AttributeError: 'ProgressBar' object has no attribute 'main_progress_bar' when use neuralprophet().fit(), can u help me? thanks #1562
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
my code:
m = NeuralProphet(
trend_global_local="local",
season_global_local="local",
changepoints_range=0.8,
trend_reg=5,
n_forecasts=3,
n_lags=10,
unknown_data_normalization=True,
)
m.set_plotting_backend("matplotlib")
df_train, df_test = m.split_df(dff, valid_p=0.33, local_split=True) # dataframe: ['ID', 'ds', 'y']
metrics = m.fit(df_train, freq='D', validation_df=df_test, learning_rate=0.001, progress='plot', metrics=True, early_stopping=True)
error:
Beta Was this translation helpful? Give feedback.
All reactions