当前位置:主页 > 软件编程 > Python代码 >

python 消除 futureWarning问题的解决

时间:2021-07-07 08:53:27 | 栏目:Python代码 | 点击:

在用LogisticRegression和svm的时候会出一堆futureWarning很碍眼于是

解决方法如下:

from warnings import simplefilter
simplefilter(action='ignore', category=FutureWarning)

您可能感兴趣的文章:

相关文章