├── LICENSE ├── MST.c ├── README.md ├── SAC.c ├── SAT.c ├── SSA.c ├── data process └── processHowNet.py ├── datasets ├── HowNet.txt ├── SememeFile ├── Sogou-T(sample).txt ├── VocabFile ├── Word_Sense_Sememe_File ├── analogy.txt ├── wordsim-240.txt └── wordsim-297.txt └── word2vec ├── LICENSE ├── README.txt ├── compute-accuracy.c ├── demo-analogy.sh ├── demo-classes.sh ├── demo-phrase-accuracy.sh ├── demo-phrases.sh ├── demo-train-big-model-v1.sh ├── demo-word-accuracy.sh ├── demo-word.sh ├── distance.c ├── makefile ├── questions-phrases.txt ├── questions-words.txt ├── word-analogy.c ├── word2phrase.c └── word2vec.c /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/SE-WRL/HEAD/LICENSE -------------------------------------------------------------------------------- /MST.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/SE-WRL/HEAD/MST.c -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/SE-WRL/HEAD/README.md -------------------------------------------------------------------------------- /SAC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/SE-WRL/HEAD/SAC.c -------------------------------------------------------------------------------- /SAT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/SE-WRL/HEAD/SAT.c -------------------------------------------------------------------------------- /SSA.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/SE-WRL/HEAD/SSA.c -------------------------------------------------------------------------------- /data process/processHowNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/SE-WRL/HEAD/data process/processHowNet.py -------------------------------------------------------------------------------- /datasets/HowNet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/SE-WRL/HEAD/datasets/HowNet.txt -------------------------------------------------------------------------------- /datasets/SememeFile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/SE-WRL/HEAD/datasets/SememeFile -------------------------------------------------------------------------------- /datasets/Sogou-T(sample).txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/SE-WRL/HEAD/datasets/Sogou-T(sample).txt -------------------------------------------------------------------------------- /datasets/VocabFile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/SE-WRL/HEAD/datasets/VocabFile -------------------------------------------------------------------------------- /datasets/Word_Sense_Sememe_File: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/SE-WRL/HEAD/datasets/Word_Sense_Sememe_File -------------------------------------------------------------------------------- /datasets/analogy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/SE-WRL/HEAD/datasets/analogy.txt -------------------------------------------------------------------------------- /datasets/wordsim-240.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/SE-WRL/HEAD/datasets/wordsim-240.txt -------------------------------------------------------------------------------- /datasets/wordsim-297.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/SE-WRL/HEAD/datasets/wordsim-297.txt -------------------------------------------------------------------------------- /word2vec/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/SE-WRL/HEAD/word2vec/LICENSE -------------------------------------------------------------------------------- /word2vec/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/SE-WRL/HEAD/word2vec/README.txt -------------------------------------------------------------------------------- /word2vec/compute-accuracy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/SE-WRL/HEAD/word2vec/compute-accuracy.c -------------------------------------------------------------------------------- /word2vec/demo-analogy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/SE-WRL/HEAD/word2vec/demo-analogy.sh -------------------------------------------------------------------------------- /word2vec/demo-classes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/SE-WRL/HEAD/word2vec/demo-classes.sh -------------------------------------------------------------------------------- /word2vec/demo-phrase-accuracy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/SE-WRL/HEAD/word2vec/demo-phrase-accuracy.sh -------------------------------------------------------------------------------- /word2vec/demo-phrases.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/SE-WRL/HEAD/word2vec/demo-phrases.sh -------------------------------------------------------------------------------- /word2vec/demo-train-big-model-v1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/SE-WRL/HEAD/word2vec/demo-train-big-model-v1.sh -------------------------------------------------------------------------------- /word2vec/demo-word-accuracy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/SE-WRL/HEAD/word2vec/demo-word-accuracy.sh -------------------------------------------------------------------------------- /word2vec/demo-word.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/SE-WRL/HEAD/word2vec/demo-word.sh -------------------------------------------------------------------------------- /word2vec/distance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/SE-WRL/HEAD/word2vec/distance.c -------------------------------------------------------------------------------- /word2vec/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/SE-WRL/HEAD/word2vec/makefile -------------------------------------------------------------------------------- /word2vec/questions-phrases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/SE-WRL/HEAD/word2vec/questions-phrases.txt -------------------------------------------------------------------------------- /word2vec/questions-words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/SE-WRL/HEAD/word2vec/questions-words.txt -------------------------------------------------------------------------------- /word2vec/word-analogy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/SE-WRL/HEAD/word2vec/word-analogy.c -------------------------------------------------------------------------------- /word2vec/word2phrase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/SE-WRL/HEAD/word2vec/word2phrase.c -------------------------------------------------------------------------------- /word2vec/word2vec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thunlp/SE-WRL/HEAD/word2vec/word2vec.c --------------------------------------------------------------------------------