Max Mergenthaler

Results 46 comments of Max Mergenthaler

This is solved by the new release.

We released some new improvements and increased the number of allowed requests. Please install the latest version of the SDK and try again. I am happy to help if that...

Hi @mdancho84 and @vidarsumo, this sounds like an amazing idea! Let us put it in the backlog and come back to you.

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...