Update gensim word2vec model

前端 未结 6 574
时光取名叫无心
时光取名叫无心 2020-12-02 23:16

I have a word2vec model in gensim trained over 98892 documents. For any given sentence that is not present in the sentences array (i.e. the set over which I trained the mode

6条回答
  •  时光取名叫无心
    2020-12-02 23:40

    If your model was generated using the C tool load_word2vec_format it is not possible to update that model. See the word2vec tutorial section on Online Training Word2Vec Tutorial:

    Note that it’s not possible to resume training with models generated by the C tool, load_word2vec_format(). You can still use them for querying/similarity, but information vital for training (the vocab tree) is missing there.

提交回复
热议问题