-
Notifications
You must be signed in to change notification settings - Fork 825
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
a pickle file problem #51
Comments
Hi, @soohyunee did you solve this question? I am confusing this problem right now. Do you have any idea? |
Hi, @GaoZhongqin https://www.kaggle.com/ia1na09/cnn-keras-pretrained-word2vec-yoon-kim-model If you don't need 'mr.p' file, I suggest you the way of this kernel. I hope the kernel helps you as well :) |
Hello all, If you are attempting to do this under python 3 and are having memory limitation problems, then your issue likely lies within the string processing. Python 2 and Python 3 process binary files differently where all comparisons of binary strings in Python 3 must be preceded by a lowercase b for it to be successful.
Notice the space ' ' has a b before it: b' ' Hope this helps. |
Hi, @yoonkim
I am a beginner of natural language processing and machine learning. Since 'GoogleNews-vectors-negative300.bin' file size is quite large, all of my attemps for making a pickle file ('mr.p') failed. Could you give me some pieces of advice for making 'mr.p' with 16GB~32GB RAM if you don't mind?
And.. I wonder if 'mr.p' also need a chunk process to solve the memory problem. (I little know about pickle file..)
Thank you
The text was updated successfully, but these errors were encountered: