去掉python的警告
Posted nxf_rabbit75
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了去掉python的警告相关的知识,希望对你有一定的参考价值。
1.常规警告
import warnings warnings.filterwarnings("ignore")
2.安装gensim,在python中导入的时候出现一个警告:
warnings.warn("detected Windows; aliasing chunkize to chunkize_serial")
UserWarning: detected Windows; aliasing chunkize to chunkize_serial
解决方法:输入下面两条语句即可:
import warnings warnings.filterwarnings(action=‘ignore‘,category=UserWarning,module=‘gensim‘)
以上是关于去掉python的警告的主要内容,如果未能解决你的问题,请参考以下文章
怎么去掉Xcodeproject中的某种类型的警告 Implicit conversion loses integer precision: 'NSInteger' (
怎么去掉Xcode工程中的某种类型的警告 Implicit conversion loses integer precision: 'NSInteger' (aka 'long
Xcode8:"subsystem: com.apple.UIKit, category: HIDEventFiltered, enable_level: 0" 的警告(代码片段