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

Fix bug that prevents loading old models #3359

Merged
merged 8 commits into from
Dec 7, 2022
2 changes: 1 addition & 1 deletion gensim/models/word2vec.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@
import numpy as np

from gensim.utils import keep_vocab_item, call_on_class_only, deprecated
from gensim.models.keyedvectors import KeyedVectors, pseudorandom_weak_vector
from gensim.models.keyedvectors import KeyedVectors, pseudorandom_weak_vector, Vocab
from gensim import utils, matutils

from smart_open.compression import get_supported_extensions
Expand Down