在本文中,将介绍skforecast并演示了如何使用它在时间序列数据上生成预测。skforecast库的一个有价值的特性是它能够使用没有日期时间索引的数据进行训练和预测。...': [10, 50, 100], 'max_depth': [5, 15, 30, 45, 60]},
'GradientBoostingRegressor': {'n_estimators...]},
'LGBMRegressor': {'n_estimators': [10, 50, 100], 'max_depth': [5, 15, 30, 45, 60]...},
'XGBRegressor': {'n_estimators': [10, 50, 100], 'max_depth': [5, 15, 30, 45, 60]}}...=10
lags = 5
XGBRegressor
max_depth=5
n_estimators=10
lags = 2
预测
我们现在知道了应用于模型的最佳参数,可以开始训练了。