def model_random_forecast(Xtrain,Xtest,ytrain):
X_train = Xtrain
y_train = ytrain
rfr = RandomForestRegressor(n_jobs=1, random_state=0)
param_grid = {'n_estimators': [1000]}
# 'n_estimators': [1000], 'max_features': [10,15,20,25], 'max_depth':[20,20,25,25,]}
model = GridSearchCV(estimator=rfr, param_grid=param_grid, n_jobs=1, cv=10, scoring=RMSE)
model.fit(X_train, y_train)
print('Random forecast regression...')
print('Best Params:')
print(model.best_params_)
print('Best CV Score:')
print(-model.best_score_)
y_pred = model.predict(Xtest)
return y_pred, -model.best_score_
RandomForest.py 文件源码
python
阅读 22
收藏 0
点赞 0
评论 0
评论列表
文章目录