├── LICENSE ├── README.md ├── demo.py ├── forPython2 ├── demo.py ├── segment.py ├── train.py └── wiki_to_txt.py ├── jieba_dict ├── dict.txt.big └── stopwords.txt ├── segment.py ├── train.py └── wiki_to_txt.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zake7749/word2vec-tutorial/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zake7749/word2vec-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zake7749/word2vec-tutorial/HEAD/demo.py -------------------------------------------------------------------------------- /forPython2/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zake7749/word2vec-tutorial/HEAD/forPython2/demo.py -------------------------------------------------------------------------------- /forPython2/segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zake7749/word2vec-tutorial/HEAD/forPython2/segment.py -------------------------------------------------------------------------------- /forPython2/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zake7749/word2vec-tutorial/HEAD/forPython2/train.py -------------------------------------------------------------------------------- /forPython2/wiki_to_txt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zake7749/word2vec-tutorial/HEAD/forPython2/wiki_to_txt.py -------------------------------------------------------------------------------- /jieba_dict/dict.txt.big: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zake7749/word2vec-tutorial/HEAD/jieba_dict/dict.txt.big -------------------------------------------------------------------------------- /jieba_dict/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zake7749/word2vec-tutorial/HEAD/jieba_dict/stopwords.txt -------------------------------------------------------------------------------- /segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zake7749/word2vec-tutorial/HEAD/segment.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zake7749/word2vec-tutorial/HEAD/train.py -------------------------------------------------------------------------------- /wiki_to_txt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zake7749/word2vec-tutorial/HEAD/wiki_to_txt.py --------------------------------------------------------------------------------