The file word2vec is directly get from https://github.com/dav/word2vec. In dirctory word2vec, word2vec.c contains the method of Skipgram and CBOW.

If you want to use models of Skipgram, CBOW, MST, SSA, SAC or SAT, you should move the corresponding C file to the dirctory word2vec and rename it to word2vec.c .
Then use 'make' command to compile it and 'sh demo-word.sh' to train the model. Note that you may need to change something in demo-word.sh .

If you want to use GloVe model, the code is in dirctory GloVe, which is cloned from https://github.com/stanfordnlp/GloVe.
