├── .gitignore ├── ActFunc.hpp ├── LICENSE ├── Makefile ├── Matrix.hpp ├── README.md ├── Rand.hpp ├── SkipGram.cpp ├── SkipGram.hpp ├── Utils.hpp ├── Vocabulary.cpp ├── Vocabulary.hpp ├── main.cpp ├── objs └── dummy └── sample_data └── sample.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassyGo/charNgram2vec/HEAD/.gitignore -------------------------------------------------------------------------------- /ActFunc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassyGo/charNgram2vec/HEAD/ActFunc.hpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassyGo/charNgram2vec/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassyGo/charNgram2vec/HEAD/Makefile -------------------------------------------------------------------------------- /Matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassyGo/charNgram2vec/HEAD/Matrix.hpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassyGo/charNgram2vec/HEAD/README.md -------------------------------------------------------------------------------- /Rand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassyGo/charNgram2vec/HEAD/Rand.hpp -------------------------------------------------------------------------------- /SkipGram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassyGo/charNgram2vec/HEAD/SkipGram.cpp -------------------------------------------------------------------------------- /SkipGram.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassyGo/charNgram2vec/HEAD/SkipGram.hpp -------------------------------------------------------------------------------- /Utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassyGo/charNgram2vec/HEAD/Utils.hpp -------------------------------------------------------------------------------- /Vocabulary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassyGo/charNgram2vec/HEAD/Vocabulary.cpp -------------------------------------------------------------------------------- /Vocabulary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassyGo/charNgram2vec/HEAD/Vocabulary.hpp -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassyGo/charNgram2vec/HEAD/main.cpp -------------------------------------------------------------------------------- /objs/dummy: -------------------------------------------------------------------------------- 1 | dummy 2 | -------------------------------------------------------------------------------- /sample_data/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hassyGo/charNgram2vec/HEAD/sample_data/sample.txt --------------------------------------------------------------------------------