I have a set of embeddings trained with a neural network that has nothing to do with gensim's word2vec.
I want to use these embeddings as the initial weights in gensim.Word2vec.
Now what I did see is that I can model.load(SOME_MODEL) and then continue training, but it requires a gensim modle as input. Also reset_from() seems to only accept other gensim model.
But in my case, I don't have a gensim model to start from, but a text file in word2vec format of embeddings.
So how do I start transfer learning from an word2vec text file to gensim.Word2vec?