-
-
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
testTrainingSgNegative is possibly incorrect #1233
Comments
Yes - it should be teting |
Well, I'm trying to familiarize myself with your codebase for GSoC! I'm going through it all anyway :D |
Thanks! Note both sets of changes can be easier to review in separate PRs. |
@shubhvachher Thanks for your contribution. Please email me/chat on gitter about GSOC. |
Doing that now @tmylk. I actually do have things to ask! Thanks |
Fixed above. |
File : gensim/test/test_word2vec.py
Method : testTrainingSgNegative
Lines that read : model = word2vec.Word2Vec(size=2, min_count=1, hs=0, negative=2)
Should read : model = word2vec.Word2Vec(size=2, min_count=1, sg=1, hs=0, negative=2)
New testMethod does pass unittests.
Is my assumption correct? If so, should I go ahead correcting this line and submitting?
The text was updated successfully, but these errors were encountered: