├── LICENSE ├── README.md ├── cpp ├── Doc2Vec.cpp ├── Doc2Vec.h ├── Makefile ├── NN.cpp ├── NN.h ├── TaggedBrownCorpus.cpp ├── TaggedBrownCorpus.h ├── TrainModelThread.cpp ├── TrainModelThread.h ├── Vocab.cpp ├── Vocab.h ├── WMD.cpp ├── WMD.h ├── common_define.h └── train.cpp └── test ├── Makefile ├── TestKeyword.cpp ├── TestSimilar.cpp ├── TestTrain.cpp └── test.cpp /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiyijian/doc2vec/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiyijian/doc2vec/HEAD/README.md -------------------------------------------------------------------------------- /cpp/Doc2Vec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiyijian/doc2vec/HEAD/cpp/Doc2Vec.cpp -------------------------------------------------------------------------------- /cpp/Doc2Vec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiyijian/doc2vec/HEAD/cpp/Doc2Vec.h -------------------------------------------------------------------------------- /cpp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiyijian/doc2vec/HEAD/cpp/Makefile -------------------------------------------------------------------------------- /cpp/NN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiyijian/doc2vec/HEAD/cpp/NN.cpp -------------------------------------------------------------------------------- /cpp/NN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiyijian/doc2vec/HEAD/cpp/NN.h -------------------------------------------------------------------------------- /cpp/TaggedBrownCorpus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiyijian/doc2vec/HEAD/cpp/TaggedBrownCorpus.cpp -------------------------------------------------------------------------------- /cpp/TaggedBrownCorpus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiyijian/doc2vec/HEAD/cpp/TaggedBrownCorpus.h -------------------------------------------------------------------------------- /cpp/TrainModelThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiyijian/doc2vec/HEAD/cpp/TrainModelThread.cpp -------------------------------------------------------------------------------- /cpp/TrainModelThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiyijian/doc2vec/HEAD/cpp/TrainModelThread.h -------------------------------------------------------------------------------- /cpp/Vocab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiyijian/doc2vec/HEAD/cpp/Vocab.cpp -------------------------------------------------------------------------------- /cpp/Vocab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiyijian/doc2vec/HEAD/cpp/Vocab.h -------------------------------------------------------------------------------- /cpp/WMD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiyijian/doc2vec/HEAD/cpp/WMD.cpp -------------------------------------------------------------------------------- /cpp/WMD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiyijian/doc2vec/HEAD/cpp/WMD.h -------------------------------------------------------------------------------- /cpp/common_define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiyijian/doc2vec/HEAD/cpp/common_define.h -------------------------------------------------------------------------------- /cpp/train.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiyijian/doc2vec/HEAD/cpp/train.cpp -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiyijian/doc2vec/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/TestKeyword.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiyijian/doc2vec/HEAD/test/TestKeyword.cpp -------------------------------------------------------------------------------- /test/TestSimilar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiyijian/doc2vec/HEAD/test/TestSimilar.cpp -------------------------------------------------------------------------------- /test/TestTrain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiyijian/doc2vec/HEAD/test/TestTrain.cpp -------------------------------------------------------------------------------- /test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hiyijian/doc2vec/HEAD/test/test.cpp --------------------------------------------------------------------------------