-
Notifications
You must be signed in to change notification settings - Fork 62
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
Read zipped word vectors #4
Comments
@danielhers When I run word2vec to generate embeddings, I have the option to save the vectors in binary mode. Does this parser take binary mode vectors, or do I have to save them non-binary? |
@henrik2706 the vectors should be saved as text, just like the pre-trained ones given with the parser: https://drive.google.com/file/d/0B8nESzOdPhLsdWF2S1Ayb1RkTXc/view?usp=sharing |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently the
-w
option allows specifying a word embedding file in text. However, these files may be quite large and are often saved in.gz
format, for example. When given a compressed word embedding file, the program should still read it, unzipping it first.The text was updated successfully, but these errors were encountered: