How to load a pre-trained Word2vec MODEL File and reuse it?
问题 I want to use a pre-trained word2vec model, but I don't know how to load it in python. This file is a MODEL file (703 MB). It can be downloaded here: http://devmount.github.io/GermanWordEmbeddings/ 回答1: just for loading import gensim # Load pre-trained Word2Vec model. model = gensim.models.Word2Vec.load("modelName.model") now you can train the model as usual. also, if you want to be able to save it and retrain it multiple times, here's what you should do model.train(//insert proper parameters