当前位置: 首页>>代码示例>>Python>>正文


Python RandomForestRegressor.staged_predict方法代码示例

本文整理汇总了Python中sklearn.ensemble.RandomForestRegressor.staged_predict方法的典型用法代码示例。如果您正苦于以下问题:Python RandomForestRegressor.staged_predict方法的具体用法?Python RandomForestRegressor.staged_predict怎么用?Python RandomForestRegressor.staged_predict使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在sklearn.ensemble.RandomForestRegressor的用法示例。


在下文中一共展示了RandomForestRegressor.staged_predict方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: print

# 需要导入模块: from sklearn.ensemble import RandomForestRegressor [as 别名]
# 或者: from sklearn.ensemble.RandomForestRegressor import staged_predict [as 别名]
y_pred_array = reg.predict(X_test_array)

ground_truth_array = y_array[test_is]
rmse = np.sqrt(mean_squared_error(ground_truth_array, y_pred_array))
print ("RMSE: %.4f" % rmse)

# •features = ['Week','Day', 'WeeksToDeparture']
# fig,ax = pds.plot_partial_dependence(reg, X_train_array, features, feature_names)


#%%
# Follow the RMSE at each stage
test_score = np.zeros((params["n_estimators"],), dtype=np.float64)
train_score = np.zeros((params["n_estimators"],), dtype=np.float64)

for i, y_pred in enumerate(reg.staged_predict(X_test_array)):
    test_score[i] = np.sqrt(mean_squared_error(ground_truth_array, y_pred))

for i, y_pred_train in enumerate(reg.staged_predict(X_train_array)):
    train_score[i] = np.sqrt(mean_squared_error(y_train_array, y_pred_train))

plt.figure(figsize=(12, 6))
plt.subplot(1, 2, 1)
plt.title("RMSE")
plt.plot(np.arange(params["n_estimators"]) + 1, train_score, "b-", label="Training Set RMSE")
plt.plot(np.arange(params["n_estimators"]) + 1, test_score, "r-", label="Test Set RMSE")
plt.legend(loc="upper right")
plt.xlabel("Boosting Iterations")
plt.ylabel("RMSE")
开发者ID:hugovallet,项目名称:Passenger-Prediction,代码行数:31,代码来源:test_script.py


注:本文中的sklearn.ensemble.RandomForestRegressor.staged_predict方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。