├── .github ├── FUNDING.yml └── workflows │ ├── lint.yml │ └── test.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── encoder.go ├── encoder.json ├── encoder_test.go ├── go.mod ├── go.sum ├── utils.go └── vocab.bpe /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [samber] 2 | -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samber/go-gpt-3-encoder/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samber/go-gpt-3-encoder/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samber/go-gpt-3-encoder/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samber/go-gpt-3-encoder/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samber/go-gpt-3-encoder/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samber/go-gpt-3-encoder/HEAD/README.md -------------------------------------------------------------------------------- /encoder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samber/go-gpt-3-encoder/HEAD/encoder.go -------------------------------------------------------------------------------- /encoder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samber/go-gpt-3-encoder/HEAD/encoder.json -------------------------------------------------------------------------------- /encoder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samber/go-gpt-3-encoder/HEAD/encoder_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samber/go-gpt-3-encoder/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samber/go-gpt-3-encoder/HEAD/go.sum -------------------------------------------------------------------------------- /utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samber/go-gpt-3-encoder/HEAD/utils.go -------------------------------------------------------------------------------- /vocab.bpe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samber/go-gpt-3-encoder/HEAD/vocab.bpe --------------------------------------------------------------------------------