Max Mergenthaler
Max Mergenthaler
This is solved by the new release.
Closing this, but feel free to re-open if necessary.
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...
Right @elephaint. The new version should fix this. Everyone should be able to create a trial account on dashboard.nixtla.io and start using TimeGPT. Re-open if necessary.
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...