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
Inside: class MultiSeriesArimaModel(AbstractArimaModel):
There is:
def predict_timeseries(
self,
horizon: int = None,
include_history: bool = True,
df: Optional[pd.DataFrame] = None) -> pd.DataFrame:
"""
Predict target column for given horizon_timedelta and history data.
:param horizon: Int number of periods to forecast forward.
:param include_history: Boolean to include the historical dates in the data
frame for predictions.
:param df: A pd.Dataframe containing regressors (exogenous variables), if they were used to train the model.
:return: A pd.DataFrame with the forecast components.
"""
horizon = horizon or self._horizon
ids = self._pickled_models.keys()
preds_dfs = list(map(lambda id_: self._predict_timeseries_single_id(id_, horizon, include_history, df), ids))
return pd.concat(preds_dfs).reset_index(drop=True)
How can I input my own customer Confidence interval? Essentially the conf for the forecast? Why does calling, MultiSeriesArimaModel.predict_timeseries()
Not have a confidence input? Why can't I input 90%? or 70%?
The text was updated successfully, but these errors were encountered:
Boskicl
changed the title
Confidence Interval Define
Confidence Interval Define Inside MultiSeriesArimaModel.predict_timeseries
Mar 8, 2024
Inside:
class MultiSeriesArimaModel(AbstractArimaModel):
There is:
Which calls:
self._predict_timeseries_single_id()
Then calls the original class:
ArimaModel()
Which has multiple function calls and eventually:
How can I input my own customer Confidence interval? Essentially the conf for the forecast? Why does calling,
MultiSeriesArimaModel.predict_timeseries()
Not have a confidence input? Why can't I input 90%? or 70%?
The text was updated successfully, but these errors were encountered: