When I run the global model, there's an issue with the ID column in the returned results—it's not displaying correctly #1563
Unanswered
stanhaishan
asked this question in
Q&A - get help using NeuralProphet
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When I run the global model, there's an issue with the ID column in the returned results—it's not displaying correctly.
code:
m = NeuralProphet(
trend_global_local="local",
season_global_local="local",
changepoints_range=0.8,
trend_reg=5,
n_forecasts=5,
n_lags=20,
unknown_data_normalization=True,
)
m.set_plotting_backend("plotly")
df_train, df_test = m.split_df(df1, valid_p=0.2, local_split=True)
metrics = m.fit(df_train, freq='D')
future = m.make_future_dataframe(df2,n_historic_predictions=True)
forecast = m.predict(future,decompose=False,raw=True)
Beta Was this translation helpful? Give feedback.
All reactions