-
Notifications
You must be signed in to change notification settings - Fork 83
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
FSE migration to Gensim >=4 #65
base: master
Are you sure you want to change the base?
Conversation
Related to *2Vec-related classes (Word2Vec, FastText, & Doc2Vec) Changed: 1. size ctr parameter is now consistently vector_size everywhere 2. iter ctr parameter is now consistently epochs everywhere 3. index2word and index2entity attribute is now index_to_key 4. vocab dict became key_to_index for looking up a key's integer index, or get_vecattr() and set_vecattr() for other per-key attributes
Minor fixes
This pull request introduces 4 alerts when merging a0702e6 into 672e2c5 - view on LGTM.com new alerts:
|
Tests still needs to be migrated, leaving these to the repo developers |
This pull request introduces 2 alerts when merging 219c2ae into 672e2c5 - view on LGTM.com new alerts:
|
This pull request introduces 1 alert when merging ebcf9b4 into 672e2c5 - view on LGTM.com new alerts:
|
@AleMuzzi merged 4.0.0 support. However, I am also going to look into your TfIDF implementation as well, which looks good to me 👍 |
Very well, glad to know that 💪 |
I needed FSE with Gensim >=4 but I was unable to use it due to API compatibility bugs, as discussed in #40 and #43 .
I successfully performed the migration and tested it with success with a KNN classification task.