You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We can build confidence intervals for generative models or models like Arima out of the box.
But we miss this opportunity for Regression models.
We should build intervals from backtest results for such models.
Motivation
Confidence intervals are helpfull for risk estimation.
Proposal
Pipeline method forecast has parameter confidence_interval by default False
Pipeline __init__ has parameters interval_width by default 0.95 and confidence_interval_cv by default 3
While forecast -- default implementation of confidence intervals is used, if it's not available -- we use another procedure
Estimating errors on crossvalidation results using backtest
confidence interva is given by (y_{i} - t_{\alpha} * SE, y_{i} + t_{\alpha} * SE) - SE -- standart error estimation
Test cases
No response
Alternatives
No response
Additional context
No response
Checklist
Added feature request
Added motivation
Added proposal
The text was updated successfully, but these errors were encountered:
🚀 Feature Request
We can build confidence intervals for generative models or models like Arima out of the box.
But we miss this opportunity for Regression models.
We should build intervals from backtest results for such models.
Motivation
Confidence intervals are helpfull for risk estimation.
Proposal
forecast
has parameterconfidence_interval
by default False__init__
has parametersinterval_width
by default0.95
andconfidence_interval_cv
by default 3Test cases
No response
Alternatives
No response
Additional context
No response
Checklist
The text was updated successfully, but these errors were encountered: