├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── create_word2vec.py └── process_wiki.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgrif/wiki-word2vec/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgrif/wiki-word2vec/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgrif/wiki-word2vec/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgrif/wiki-word2vec/HEAD/README.md -------------------------------------------------------------------------------- /create_word2vec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgrif/wiki-word2vec/HEAD/create_word2vec.py -------------------------------------------------------------------------------- /process_wiki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hgrif/wiki-word2vec/HEAD/process_wiki.py --------------------------------------------------------------------------------