欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

使用Python进行数据挖掘的编程问题杂锦

程序员文章站 2024-01-30 23:23:04
...

Python编程问题杂锦

1、成功安装Pandas等模块后,编译器还是提示 "modules ‘pandas’ has no attribute ‘Series’ "。

Ans:检查文件名是否用了相关的pandas.py,与关键字名冲突。

2、编译器提示“ConvergenceWarning: Liblinear failed to converge, increase the number of iterations.‘the number of iterations.’, ConvergenceWarning”

Ans:很大一部分原因是因为这个优化算法因为条件不佳而无法收敛。这时候可以尝试一下如下方法:
	1、归一化训练数据,加快收敛速度。

这里是引用——One possibility is to scale your data to 0 mean, unit standard deviation using Scikit-Learn’s StandardScaler for an example. Note that you have to apply the StandardScaler fitted on the training data to the test data.

	2、与1类似,确保其他参数设置正确,将默认的max_iter设置为更大的值。(默认值是1000次)