Error 细节

1、TypeError: only integer scalar arrays can be converted to a scalar index
https://www.cnblogs.com/cloud-ken/p/8465494.html

使用np.random.choice创建list,使用这个List作为Data[] List对象的索引。
出现TypeError: only integer scalar arrays can be converted to a scalar index错误。

2、ValueError: Input contains NaN, infinity or a value too large for dtype(‘float64’).

解决方法:
检查数据中是否有缺失值,
print(np.isnan(data_test).any())
删除有缺失值的行或者缺失值处理

你可能感兴趣的:(解决Python相关的问题)