-
Notifications
You must be signed in to change notification settings - Fork 23
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
Serialization #62
Comments
Does this portion capture what's needed for the ngram vectorizer? https://github.com/TutteInstitute/vectorizers/blob/master/vectorizers/ngram_vectorizer.py#L269-L276 |
Sorry for all the comments! Pickling the ngram vectorizer seems to work as long as all the numba attributes in the class are converted back to regular Python objects. Does this agree with your understanding? |
Yes -- to properly handle things we really need to set up the |
Have you thought about adding serialization/saving to disk? At the very least, would you point out what to store for, say, the ngram vectorizer?
Thank you very much for the examples on training word/document vectors using this and comparing to USE! Giving it a try now on my data and it looks pretty good! Thank you!
The text was updated successfully, but these errors were encountered: