├── .gitignore ├── LICENSE.txt ├── Makefile ├── README-ja.md ├── README.md ├── cat2vec.py ├── cat2vec_bind.pyx ├── cat2vec_calc.cpp ├── cat2vec_calc.h ├── cat2vec_pp.py ├── demo_catvec.py ├── demo_sentvec.py ├── eval_cat_predict.py ├── eval_joint_cat_predict.py ├── eval_joint_sent_predict.py ├── eval_sent_predict.py ├── matutils.py ├── options.c ├── options.h ├── sent2vec.py ├── sent2vec_bind.pyx ├── sent2vec_calc.cpp ├── sent2vec_calc.h ├── sent2vec_pp.py ├── sentences.py ├── settings.py ├── setup.py ├── utils.py ├── voidptr.h ├── word2vec.py └── word2vec_inner.pyx /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakuten-nlp/category2vec/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakuten-nlp/category2vec/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakuten-nlp/category2vec/HEAD/Makefile -------------------------------------------------------------------------------- /README-ja.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakuten-nlp/category2vec/HEAD/README-ja.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakuten-nlp/category2vec/HEAD/README.md -------------------------------------------------------------------------------- /cat2vec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakuten-nlp/category2vec/HEAD/cat2vec.py -------------------------------------------------------------------------------- /cat2vec_bind.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakuten-nlp/category2vec/HEAD/cat2vec_bind.pyx -------------------------------------------------------------------------------- /cat2vec_calc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakuten-nlp/category2vec/HEAD/cat2vec_calc.cpp -------------------------------------------------------------------------------- /cat2vec_calc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakuten-nlp/category2vec/HEAD/cat2vec_calc.h -------------------------------------------------------------------------------- /cat2vec_pp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakuten-nlp/category2vec/HEAD/cat2vec_pp.py -------------------------------------------------------------------------------- /demo_catvec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakuten-nlp/category2vec/HEAD/demo_catvec.py -------------------------------------------------------------------------------- /demo_sentvec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakuten-nlp/category2vec/HEAD/demo_sentvec.py -------------------------------------------------------------------------------- /eval_cat_predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakuten-nlp/category2vec/HEAD/eval_cat_predict.py -------------------------------------------------------------------------------- /eval_joint_cat_predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakuten-nlp/category2vec/HEAD/eval_joint_cat_predict.py -------------------------------------------------------------------------------- /eval_joint_sent_predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakuten-nlp/category2vec/HEAD/eval_joint_sent_predict.py -------------------------------------------------------------------------------- /eval_sent_predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakuten-nlp/category2vec/HEAD/eval_sent_predict.py -------------------------------------------------------------------------------- /matutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakuten-nlp/category2vec/HEAD/matutils.py -------------------------------------------------------------------------------- /options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakuten-nlp/category2vec/HEAD/options.c -------------------------------------------------------------------------------- /options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakuten-nlp/category2vec/HEAD/options.h -------------------------------------------------------------------------------- /sent2vec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakuten-nlp/category2vec/HEAD/sent2vec.py -------------------------------------------------------------------------------- /sent2vec_bind.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakuten-nlp/category2vec/HEAD/sent2vec_bind.pyx -------------------------------------------------------------------------------- /sent2vec_calc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakuten-nlp/category2vec/HEAD/sent2vec_calc.cpp -------------------------------------------------------------------------------- /sent2vec_calc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakuten-nlp/category2vec/HEAD/sent2vec_calc.h -------------------------------------------------------------------------------- /sent2vec_pp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakuten-nlp/category2vec/HEAD/sent2vec_pp.py -------------------------------------------------------------------------------- /sentences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakuten-nlp/category2vec/HEAD/sentences.py -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakuten-nlp/category2vec/HEAD/settings.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakuten-nlp/category2vec/HEAD/setup.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakuten-nlp/category2vec/HEAD/utils.py -------------------------------------------------------------------------------- /voidptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakuten-nlp/category2vec/HEAD/voidptr.h -------------------------------------------------------------------------------- /word2vec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakuten-nlp/category2vec/HEAD/word2vec.py -------------------------------------------------------------------------------- /word2vec_inner.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rakuten-nlp/category2vec/HEAD/word2vec_inner.pyx --------------------------------------------------------------------------------