We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It would be convenient to have prefitted ARIMA base forecasts for medium and large datasets on S3.
The text was updated successfully, but these errors were encountered:
Concretely this block:
%%capture if os.path.isfile('Y_hat.csv'): Y_hat_df = pd.read_csv('Y_hat.csv') Y_fitted_df = pd.read_csv('Y_fitted.csv') Y_hat_df = Y_hat_df.set_index('unique_id') Y_fitted_df = Y_fitted_df.set_index('unique_id') else: fcst = StatsForecast( df=Y_train_df, models=[AutoARIMA(season_length=12)], fallback_model=[Naive()], freq='M', n_jobs=-1 ) Y_hat_df = fcst.forecast(h=12, fitted=True, level=[80]) Y_fitted_df = fcst.forecast_fitted_values() Y_hat_df.to_csv('Y_hat.csv') Y_fitted_df.to_csv('Y_fitted.csv')
In this nb: https://github.com/Nixtla/hierarchicalforecast/blob/main/nbs/examples/TourismLarge-Evaluation.ipynb
Sorry, something went wrong.
I'm ok with the current behaviour, as the entire notebook runs in a matter of seconds.
cchallu
No branches or pull requests
It would be convenient to have prefitted ARIMA base forecasts for medium and large datasets on S3.
The text was updated successfully, but these errors were encountered: