forked from wbrown/gpt_bpe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
37 lines (32 loc) · 1.11 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
module github.com/wbrown/gpt_bpe
go 1.17
require (
github.com/edsrzf/mmap-go v1.1.0
github.com/hashicorp/golang-lru v0.5.4
github.com/stretchr/testify v1.7.1
)
require (
github.com/dustin/go-humanize v1.0.1
github.com/gopherjs/gopherjs v1.17.2
github.com/jdkato/prose/v2 v2.0.0
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/google/go-cmp v0.5.8 // indirect
github.com/kr/pretty v0.1.0 // indirect
github.com/mingrammer/commonregex v1.0.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/text v0.3.7 // indirect
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
)
require (
github.com/deckarep/golang-set v1.8.0 // indirect
github.com/vikesh-raj/go-sentencepiece-encoder v1.1.1
golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e // indirect
golang.org/x/sys v0.0.0-20220727055044-e65921a090b8 // indirect
gonum.org/v1/gonum v0.11.0 // indirect
google.golang.org/protobuf v1.26.0
gopkg.in/neurosnap/sentences.v1 v1.0.7 // indirect
)