├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── demo.sh ├── eval ├── matlab │ ├── WordLookup.m │ ├── evaluate_vectors.m │ └── read_and_evaluate.m ├── octave │ ├── WordLookup_octave.m │ ├── evaluate_vectors_octave.m │ └── read_and_evaluate_octave.m ├── python │ ├── distance.py │ ├── evaluate.py │ └── word_analogy.py └── question-data │ ├── capital-common-countries.txt │ ├── capital-world.txt │ ├── city-in-state.txt │ ├── currency.txt │ ├── family.txt │ ├── gram1-adjective-to-adverb.txt │ ├── gram2-opposite.txt │ ├── gram3-comparative.txt │ ├── gram4-superlative.txt │ ├── gram5-present-participle.txt │ ├── gram6-nationality-adjective.txt │ ├── gram7-past-tense.txt │ ├── gram8-plural.txt │ └── gram9-plural-verbs.txt ├── randomization.test.sh └── src ├── README.md ├── common.c ├── common.h ├── cooccur.c ├── glove.c ├── shuffle.c └── vocab_count.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jishanshaikh4/GloVe/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jishanshaikh4/GloVe/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jishanshaikh4/GloVe/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jishanshaikh4/GloVe/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jishanshaikh4/GloVe/HEAD/README.md -------------------------------------------------------------------------------- /demo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jishanshaikh4/GloVe/HEAD/demo.sh -------------------------------------------------------------------------------- /eval/matlab/WordLookup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jishanshaikh4/GloVe/HEAD/eval/matlab/WordLookup.m -------------------------------------------------------------------------------- /eval/matlab/evaluate_vectors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jishanshaikh4/GloVe/HEAD/eval/matlab/evaluate_vectors.m -------------------------------------------------------------------------------- /eval/matlab/read_and_evaluate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jishanshaikh4/GloVe/HEAD/eval/matlab/read_and_evaluate.m -------------------------------------------------------------------------------- /eval/octave/WordLookup_octave.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jishanshaikh4/GloVe/HEAD/eval/octave/WordLookup_octave.m -------------------------------------------------------------------------------- /eval/octave/evaluate_vectors_octave.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jishanshaikh4/GloVe/HEAD/eval/octave/evaluate_vectors_octave.m -------------------------------------------------------------------------------- /eval/octave/read_and_evaluate_octave.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jishanshaikh4/GloVe/HEAD/eval/octave/read_and_evaluate_octave.m -------------------------------------------------------------------------------- /eval/python/distance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jishanshaikh4/GloVe/HEAD/eval/python/distance.py -------------------------------------------------------------------------------- /eval/python/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jishanshaikh4/GloVe/HEAD/eval/python/evaluate.py -------------------------------------------------------------------------------- /eval/python/word_analogy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jishanshaikh4/GloVe/HEAD/eval/python/word_analogy.py -------------------------------------------------------------------------------- /eval/question-data/capital-common-countries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jishanshaikh4/GloVe/HEAD/eval/question-data/capital-common-countries.txt -------------------------------------------------------------------------------- /eval/question-data/capital-world.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jishanshaikh4/GloVe/HEAD/eval/question-data/capital-world.txt -------------------------------------------------------------------------------- /eval/question-data/city-in-state.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jishanshaikh4/GloVe/HEAD/eval/question-data/city-in-state.txt -------------------------------------------------------------------------------- /eval/question-data/currency.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jishanshaikh4/GloVe/HEAD/eval/question-data/currency.txt -------------------------------------------------------------------------------- /eval/question-data/family.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jishanshaikh4/GloVe/HEAD/eval/question-data/family.txt -------------------------------------------------------------------------------- /eval/question-data/gram1-adjective-to-adverb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jishanshaikh4/GloVe/HEAD/eval/question-data/gram1-adjective-to-adverb.txt -------------------------------------------------------------------------------- /eval/question-data/gram2-opposite.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jishanshaikh4/GloVe/HEAD/eval/question-data/gram2-opposite.txt -------------------------------------------------------------------------------- /eval/question-data/gram3-comparative.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jishanshaikh4/GloVe/HEAD/eval/question-data/gram3-comparative.txt -------------------------------------------------------------------------------- /eval/question-data/gram4-superlative.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jishanshaikh4/GloVe/HEAD/eval/question-data/gram4-superlative.txt -------------------------------------------------------------------------------- /eval/question-data/gram5-present-participle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jishanshaikh4/GloVe/HEAD/eval/question-data/gram5-present-participle.txt -------------------------------------------------------------------------------- /eval/question-data/gram6-nationality-adjective.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jishanshaikh4/GloVe/HEAD/eval/question-data/gram6-nationality-adjective.txt -------------------------------------------------------------------------------- /eval/question-data/gram7-past-tense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jishanshaikh4/GloVe/HEAD/eval/question-data/gram7-past-tense.txt -------------------------------------------------------------------------------- /eval/question-data/gram8-plural.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jishanshaikh4/GloVe/HEAD/eval/question-data/gram8-plural.txt -------------------------------------------------------------------------------- /eval/question-data/gram9-plural-verbs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jishanshaikh4/GloVe/HEAD/eval/question-data/gram9-plural-verbs.txt -------------------------------------------------------------------------------- /randomization.test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jishanshaikh4/GloVe/HEAD/randomization.test.sh -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jishanshaikh4/GloVe/HEAD/src/README.md -------------------------------------------------------------------------------- /src/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jishanshaikh4/GloVe/HEAD/src/common.c -------------------------------------------------------------------------------- /src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jishanshaikh4/GloVe/HEAD/src/common.h -------------------------------------------------------------------------------- /src/cooccur.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jishanshaikh4/GloVe/HEAD/src/cooccur.c -------------------------------------------------------------------------------- /src/glove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jishanshaikh4/GloVe/HEAD/src/glove.c -------------------------------------------------------------------------------- /src/shuffle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jishanshaikh4/GloVe/HEAD/src/shuffle.c -------------------------------------------------------------------------------- /src/vocab_count.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jishanshaikh4/GloVe/HEAD/src/vocab_count.c --------------------------------------------------------------------------------