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.
Thank you sir, that is somehow a relevant answer. So, I will load a word vector from pretrained model if it exists otherwise I will be getting it from training a new model. So, in this approach (intersect_word2vec_format) I will be using two models at the same time right ? I am surely going to give it a try.
I just want ask one more question, that while using pre trained models, I am getting alot of missing words because I am dealing with review dataset and alot of words are not following English standards and some are not in the dictionaries. Can you please guide me to deal with such type of words? Example (freeeeeeeeeeeezzzzing, 2moro, hmmmmm, etc) and (food names : samosa, Dosa) how can I incorporate these words?
--
You received this message because you are subscribed to a topic in the Google Groups "gensim" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/gensim/Y_WmJST9xx8/unsubscribe.
To unsubscribe from this group and all its topics, send an email to gensim+un...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Thank you sir, that is somehow a relevant answer. So, I will load a word vector from pretrained model if it exists otherwise I will be getting it from training a new model. So, in this approach (intersect_word2vec_format) I will be using two models at the same time right ? I am surely going to give it a try.
I just want ask one more question, that while using pre trained models, I am getting alot of missing words because I am dealing with review dataset and alot of words are not following English standards and some are not in the dictionaries. Can you please guide me to deal with such type of words? Example (freeeeeeeeeeeezzzzing, 2moro, hmmmmm, etc) and (food names : samosa, Dosa) how can I incorporate these words?
Thank you Sir Gordan , one last question please :)/........ is there anyway from somewhere I can get pretrained layers weights of some other model and initialize a new a model with those weights instead of new random weights ? And then I may start training from there.... Is is possible in gensim or any other way?
Thank you very much Gordon sir for your time and such wonderful answers.