Chunkize warning while installing gensim

user7420652 picture user7420652 · Jan 15, 2017 · Viewed 22.8k times · Source

I have installed gensim (through pip) in Python. After the installation is over I get the following warning:

C:\Python27\lib\site-packages\gensim\utils.py:855: UserWarning: detected Windows; aliasing chunkize to chunkize_serial warnings.warn("detected Windows; aliasing chunkize to chunkize_serial")

How can I rectify this?

I am unable to import word2vec from gensim.models due to this warning.

I have the following configurations: Python 2.7, gensim-0.13.4.1, numpy-1.11.3, scipy-0.18.1, pattern-2.6.

Answer

Roland Pihlakas picture Roland Pihlakas · Jan 31, 2017

You can suppress the message with this code before importing gensim:

import warnings
warnings.filterwarnings(action='ignore', category=UserWarning, module='gensim')

import gensim