Confidence intervals? #713
-
I am interesting in possibly using river for a time series forecasting problem but part of the requirements for the project include the need for confidence/prediction intervals. Does river facilitate this for a time series forecasting problem? |
Beta Was this translation helpful? Give feedback.
Answered by
raphaelsty
Sep 20, 2021
Replies: 1 comment
-
Hi @cdeterman, You might be interested in one example in particular from the River documentation that use prediction intervals, Quantile Regression Uncertainty and especially quantile loss |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
cdeterman
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @cdeterman,
You might be interested in one example in particular from the River documentation that use prediction intervals, Quantile Regression Uncertainty and especially quantile loss
optim.losses.Quantile(alpha=0.95)
. You can use this loss with most of the River models. 🙂