We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I call:
python -m gensim.scripts.make_wiki trwiki-latest-pages-articles.xml.bz2 .
The only difference is I used trwiki dump
Here what I got:
Error when tring to find the memory information on the GPU: initialization error Error freeing device pointer 0x704b88000 (initialization error). Driver report 0 bytes free and 0 bytes total CudaNdarray_uninit: error freeing self->devdata. (self=0x7fc542c1e470, self->devata=0x704b88000) Exception MemoryError: 'error freeing device pointer 0x704b88000 (initialization error)' in 'garbage collection' ignored Fatal Python error: unexpected exception during garbage collection
The text was updated successfully, but these errors were encountered:
Oh wow. Wiki processing has nothing to do with CUDA or GPUs, so I'm not sure what this is.
Do you have Theano installed? Is it installed properly? (gensim does import theano in gensim/corpora/sharded_corpus.py, but nothing else)
import theano
gensim/corpora/sharded_corpus.py
Sorry, something went wrong.
yeap theano works fine.
I had the same problem here. What I did to fix was disable the gpu. On your case, you should run the script like so:
THEANO_FLAGS=device=cpu python -m gensim.scripts.make_wiki trwiki-latest-pages-articles.xml.bz2 .
@tmylk this is issue #696 (comment) again -- fixing urgent.
Fixed in #919
tmylk
No branches or pull requests
I call:
The only difference is I used trwiki dump
Here what I got:
The text was updated successfully, but these errors were encountered: