-
-
Notifications
You must be signed in to change notification settings - Fork 4.4k
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
FAST_VERSION is -1 when using latest gensim (3.8.1) #2794
Comments
What did the 3.8.1 installation look like? Can you post the full installation output from That should contain the concrete issue. |
|
Thanks. I installed using the same wheel @menshikh-iv @mpenkov were there any changes between 3.7 and 3.8 when it comes to packaging binary wheels? |
Btw that |
no (and I guess that this is a problem), at least I have several ideas about "what can be wrong" @piskvorky can you please check that behavior on |
from gensim.models import word2vec; print("FAST_VERSION", word2vec.FAST_VERSION)
FAST_VERSION 0
from gensim.models import word2vec; print("FAST_VERSION", word2vec.FAST_VERSION)
FAST_VERSION -1 The same machine, OS, Python3.7 & virtual env, just changing the gensim version with Probably the most critical issue we have right now: Gensim's most used models are unusable. |
Thanks for info, I’ll look into this week @piskvorky |
@piskvorky one more thing, can you do exactly same testing on |
Sure. Python3.6: 3.8.1: FAST_VERSION 0 |
@piskvorky can you please check this 3 wheels (py 3.5, 3.6 and 3.7). Don't worry about version, this built from a2ec4c3 (current develop) https://drive.google.com/open?id=1gkjVBuHV4i_zHcOwtiDkDXwqG_XbLjXk |
Related PR MacPython/gensim-wheels#21 |
I don't have access to 3.5 but I confirm the above wheels for 3.7 and 3.6 work! |
What was the problem? Should that file in |
@gojomo this was temporary, I just need "concrete fresh commit" for my investigations. You can read more about it MacPython/gensim-wheels#21 (comment) |
Fixed by MacPython/gensim-wheels#21 |
Problem description
assert gensim.models.doc2vec.FAST_VERSION > -1
fails with gensim 3.8.1, even though it works with 3.7.0.Steps/code/corpus to reproduce
When I install the latest version of gensim using
pip install --upgrade gensim
, I observe the following:When I roll back to version 3.7, the assertion passes:
Versions
The text was updated successfully, but these errors were encountered: