Yan Liu
04/26/2024, 4:40 AMnmodels
from 5 to 4 significantly impact training time?
We're training AutoARIMA for 8,000 - 12,000 time series models using the AutoARIMA instance specified as below, but it takes very long time and for some instances we saw this refitting (while ARIMA is almost instantaneous)
auto_arima_model = [AutoARIMA(season_length=7, nmodels=5, trace=True)]
jan rathfelder
04/26/2024, 9:46 AMsf = StatsForecast(
models=[
AutoARIMA(season_length=52),
AutoETS(season_length=52),
AutoCES(season_length=52),
AutoTheta(season_length=52),
],
freq="W-MON",
n_jobs=-1
)
Yan Liu
04/26/2024, 3:06 PMstatsforecast = StatsForecast(
models=models,
freq="D",
fallback_model=SeasonalNaive(season_length=7),
n_jobs=-1,
)
jan rathfelder
04/26/2024, 4:14 PMBrian Head
04/27/2024, 3:42 PMYan Liu
04/28/2024, 10:37 PMBrian Head
04/29/2024, 3:59 PM