I am using Gensim Library in python for using and training word2vector model. Recently, I was looking at initializing my model weights with some pre-trained word2vec model such as (GoogleNewDataset pretrained model). I have been struggling with it for a couple of weeks. Now, I just searchedfound out that in gesim there is a function that can help me to initialize the weights of my model with pre-trained model weights.
That is mentioned below:
reset_from(other_model) Borrow shareable pre-built structures (like vocab) from the other_model. Useful if testing multiple models in parallel on the same corpus. I don'tdo not know this function can do the same thing or not. Please help!!!