In spacy, how to use your own word2vec model created in gensim?
问题 I have trained my own word2vec model in gensim and I am trying to load that model in spacy. First, I need to save it in my disk and then try to load an init-model in spacy but unable to figure out exactly how. gensimmodel Out[252]: <gensim.models.word2vec.Word2Vec at 0x110b24b70> import spacy spacy.load(gensimmodel) OSError: [E050] Can't find model 'Word2Vec(vocab=250, size=1000, alpha=0.025)'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory. 回答1: