├── LICENSE ├── README.md ├── cmd ├── cui2vec │ └── main.go ├── pcdvec │ ├── README.md │ └── main.go └── vecserver │ └── main.go ├── cui2vec.go ├── cui2vec_test.go ├── go.mod ├── go.sum ├── mapping.go ├── mapping_test.go ├── precomputed.go ├── similarity.go ├── softmax.go ├── testdata └── cui2vec_precomputed.bin ├── uncompressed.go └── vecclient.go /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hscells/cui2vec/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hscells/cui2vec/HEAD/README.md -------------------------------------------------------------------------------- /cmd/cui2vec/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hscells/cui2vec/HEAD/cmd/cui2vec/main.go -------------------------------------------------------------------------------- /cmd/pcdvec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hscells/cui2vec/HEAD/cmd/pcdvec/README.md -------------------------------------------------------------------------------- /cmd/pcdvec/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hscells/cui2vec/HEAD/cmd/pcdvec/main.go -------------------------------------------------------------------------------- /cmd/vecserver/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hscells/cui2vec/HEAD/cmd/vecserver/main.go -------------------------------------------------------------------------------- /cui2vec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hscells/cui2vec/HEAD/cui2vec.go -------------------------------------------------------------------------------- /cui2vec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hscells/cui2vec/HEAD/cui2vec_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hscells/cui2vec/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hscells/cui2vec/HEAD/go.sum -------------------------------------------------------------------------------- /mapping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hscells/cui2vec/HEAD/mapping.go -------------------------------------------------------------------------------- /mapping_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hscells/cui2vec/HEAD/mapping_test.go -------------------------------------------------------------------------------- /precomputed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hscells/cui2vec/HEAD/precomputed.go -------------------------------------------------------------------------------- /similarity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hscells/cui2vec/HEAD/similarity.go -------------------------------------------------------------------------------- /softmax.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hscells/cui2vec/HEAD/softmax.go -------------------------------------------------------------------------------- /testdata/cui2vec_precomputed.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hscells/cui2vec/HEAD/testdata/cui2vec_precomputed.bin -------------------------------------------------------------------------------- /uncompressed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hscells/cui2vec/HEAD/uncompressed.go -------------------------------------------------------------------------------- /vecclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hscells/cui2vec/HEAD/vecclient.go --------------------------------------------------------------------------------