gpt4 book ai didi

Python 学习。为什么我只在第一次收到警告?

转载 作者:太空宇宙 更新时间:2023-11-03 13:01:13 28 4
gpt4 key购买 nike

我只在第一次收到警告。这正常吗?

>>> cv=LassoCV(cv=10).fit(x,y)
C:\Python27\lib\site-packages\scikit_learn-0.14.1-py2.7-win32.egg\sklearn\linear_model\coordinate_descent.py:418: UserWarning: Objective did not converge. You might want to increase the number of iterations
' to increase the number of iterations')
>>> cv=LassoCV(cv=10).fit(x,y)
>>>

最佳答案

这是因为默认情况下,python 警告过滤器设置为仅在第一次捕获特定警告时发出警告。

如果你想获得所有警告,只需添加:

import warnings
warnings.simplefilter("always")

关于Python 学习。为什么我只在第一次收到警告?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20265379/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com