Vectors trained on orthographical word forms; using python 2.7.* and gensim 0.12.4 Vector size is the number at the last position before file extension w2v, glove - types of vectors (w2v = word2vec) allwiki - trained /also/ on all of the Polish wikipedia nkjp300, nkjpfull - trained /also/ on NKJP, either 300 mln balanced of full version Each word2vec model can be either opened using gensim native model de/serialization: model = Word2Vec.load('w2v_allwiki_nkjpfull_100.model') # you can continue training with the loaded model! or using python pickle: model = pickle.load(open('w2v_allwiki_nkjpfull_100.pkl','rb'))