解决ConvergenceWarning: Liblinear failed to converge, increase the number of iterations.

**解决ConvergenceWarning: Liblinear failed to converge, increase the number of iterations.
**
用LinearSVC训练模型时,遇到以下问题:Liblinear 无法收敛,请增加迭代次数。

两种解决办法:
1、增加max_iter(默认1000),代码如下

clfs = LinearSVC(max_iter=5000)

2、取消默认值,改为dual=False,代码如下

clfs = LinearSVC(dual=False)

两种方法运行的结果一样
解决ConvergenceWarning: Liblinear failed to converge, increase the number of iterations._第1张图片

你可能感兴趣的:(机器学习,机器学习)