成功解决ValueError: Parameter values for parameter (n_estimators) need to be a sequence.

简介: 成功解决ValueError: Parameter values for parameter (n_estimators) need to be a sequence.

输出结

image.png

 

设计思

值错误:参数(n_estimators)的参数值需要是一个序列。


 

核心代

定位到出错的位置,发现存在 range(1, 51, 1),可知,此函数输出的是 range型数据,而要求需要是序列类型,即list型数据,所以将range类型转为list类型数据即可!


相关文章:成功解决random.py"之TypeError: 'range' object does not support item assignmenthttps://yunyaniu.blog.csdn.net/article/details/82843781



哈哈,大功告成!


相关文章
|
SQL
Parameter ‘id‘ not found. Available parameters are [collection, list]
Parameter ‘id‘ not found. Available parameters are [collection, list]
233 0
|
6月前
Argument of type 'XX' is not assignable to parameter of type 'XX'
Argument of type 'XX' is not assignable to parameter of type 'XX'
117 0
|
C++
Reference Parameter
Reference Parameter(引用参数)是一种 C++ 编程语言中的参数传递方式。它允许将一个变量的引用(而不是副本)作为函数参数传递。引用参数的主要优点是可以避免在函数内部对实参进行拷贝操作,从而提高代码的效率。
75 1
|
JSON 数据格式
JsonParseException: Unexpected character (‘ï‘ (code 239)): was expecting comma to separate Object
JsonParseException: Unexpected character (‘ï‘ (code 239)): was expecting comma to separate Object
248 0
报错 ValueError: too many values to unpack (expected 2)
报错 ValueError: too many values to unpack (expected 2)
201 0
Optional int parameter ‘id‘ is present but cannot be translated into a null value due to being ……
Optional int parameter ‘id‘ is present but cannot be translated into a null value due to being ……
298 0
ValueError: not enough values to unpack (expected 3, got 2)
这个错误通常是因为在解包(unpacking)元组(tuple)时,元组中的元素数量与期望不符,导致无法将所有元素正确解包。 例如,在以下代码中,元组中只有两个元素,但我们尝试将其解包为三个变量:
599 0
|
Windows
Illegal character in opaque part at index
Illegal character in opaque part at index