Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] 2Vec SaveLoad improvements #2892

Closed
wants to merge 7 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
set .vectors even when ngrams off
  • Loading branch information
gojomo committed Jul 22, 2020
commit ac9126de4d5e848f80fdff03926a705ec340aad4
1 change: 1 addition & 0 deletions gensim/models/fasttext.py
Original file line number Diff line number Diff line change
@@ -1401,6 +1401,7 @@ def adjust_vectors(self):

"""
if self.bucket == 0:
self.vectors = self.vectors_vocab # no ngrams influence
return

self.vectors = self.vectors_vocab[:].copy()