Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@Yuktha-Majella
Created August 7, 2021 16:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Yuktha-Majella/9f5aea9988a830919d76f2ad38ef84fd to your computer and use it in GitHub Desktop.
Save Yuktha-Majella/9f5aea9988a830919d76f2ad38ef84fd to your computer and use it in GitHub Desktop.
Updating an existing Word2Vec model in Gensim
data2 = words[1000:]
w2v_model.build_vocab(data2, update=True)
w2v_model.train(data2, total_examples=w2v_model.corpus_count, epochs=w2v_model.iter)
w2v_model['social']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment