-
-
Notifications
You must be signed in to change notification settings - Fork 72
/
go.mod
47 lines (44 loc) · 1.79 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
module github.com/owulveryck/onnx-go
go 1.19
require (
github.com/chewxy/hm v1.0.0
github.com/davecgh/go-spew v1.1.1
github.com/disintegration/imaging v1.6.2
github.com/gogo/protobuf v1.3.2
github.com/golang/protobuf v1.5.2
github.com/kelseyhightower/envconfig v1.4.0
github.com/kr/pretty v0.3.0
github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646
github.com/pkg/errors v0.9.1
github.com/sanity-io/litter v1.5.5
github.com/stretchr/testify v1.8.0
github.com/vincent-petithory/dataurl v1.0.0
golang.org/x/image v0.0.0-20220902085622-e7cb96979f69
golang.org/x/tools v0.1.12
gonum.org/v1/gonum v0.12.0
gorgonia.org/gorgonia v0.9.17 //ct
gorgonia.org/tensor v0.9.24
)
require (
github.com/apache/arrow/go/arrow v0.0.0-20211112161151-bc219186db40 // indirect
github.com/awalterschulze/gographviz v2.0.3+incompatible // indirect
github.com/chewxy/math32 v1.10.1 // indirect
github.com/google/flatbuffers v22.9.29+incompatible // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/leesper/go_rng v0.0.0-20190531154944-a612b043e353 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rogpeppe/go-internal v1.9.0 // indirect
github.com/xtgo/set v1.0.0 // indirect
github.com/yuin/goldmark v1.5.2 // indirect
go4.org/unsafe/assume-no-moving-gc v0.0.0-20220617031537-928513b29760 // indirect
golang.org/x/net v0.0.0-20221002022538-bcab6841153b // indirect
golang.org/x/sys v0.0.0-20220928140112-f11e5e49a4ec // indirect
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
google.golang.org/protobuf v1.28.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
gorgonia.org/cu v0.9.4 // indirect
gorgonia.org/dawson v1.2.0 // indirect
gorgonia.org/vecf32 v0.9.0 // indirect
gorgonia.org/vecf64 v0.9.0 // indirect
)