AttributeError: 'RandomizedSearchCV' object has no attribute 'best_params_'
时间: 2023-09-24 20:03:30 浏览: 92
【Python】AttributeError: ‘AutoSchema’ object has no attribute ‘get_link’
5星 · 资源好评率100%
这个错误通常是因为你没有调用 `fit()` 方法拟合 `RandomizedSearchCV` 对象。在调用 `fit()` 方法之前,`best_params_` 属性不会被设置,因此会引发该错误。请确保在调用 `best_params_` 属性之前使用 `fit()` 方法拟合 `RandomizedSearchCV` 对象,例如:
```
random_search.fit(X_train, y_train)
print(random_search.best_params_)
```
阅读全文