问题:

UserWarning: detected Windows; aliasing chunkize to chunkize_serial
  warnings.warn("detected Windows; aliasing chunkize to chunkize_serial")

解决方案:

在import gensim前面加入:

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

import gensim

相关文章:

  • 2021-04-24
  • 2022-12-23
  • 2022-01-24
  • 2022-12-23
  • 2021-05-30
  • 2021-08-03
  • 2022-12-23
猜你喜欢
  • 2021-08-16
  • 2021-03-31
  • 2021-10-29
  • 2022-12-23
  • 2021-09-15
  • 2021-11-07
  • 2021-06-20
相关资源
相似解决方案