Lower & Upper Bound #506
Unanswered
ayushpatidar
asked this question in
Q&A - get help using NeuralProphet
Replies: 1 comment
-
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
How can we get lower & upper bound in NeuralProphet.
Below is the code that i am using:
nprophet_model = NeuralProphet()
metrics = nprophet_model.fit(df_train, freq="1H")
future_df = nprophet_model.make_future_dataframe(df_train,
periods = test_length,
n_historic_predictions=len(df_train))
preds_df_2 = nprophet_model.predict(future_df)
Beta Was this translation helpful? Give feedback.
All reactions