rf_bo.explore(
{'n_estimators': [10, 100, 200],
'min_samples_split': [2, 10, 20],
'max_features': [0.1, 0.5, 0.9],
'max_depth': [5, 10, 15]
})
1 rf_bo.explore(
2 {'n_estimators': [10, 100, 200],
3 'min_samples_split': [2, 10, 20],
4 'max_features': [0.1, 0.5, 0.9],
5 'max_depth': [5, 10, 15]
AttributeError: 'BayesianOptimization' object has no attribute 'explore'
这个代码要怎么改正?谢谢!