1
0
Fork 0
urban-meal-delivery-demand-.../tex/3_mod/7_models/2_hori.tex

43 lines
1.9 KiB
TeX
Raw Normal View History

2020-10-25 18:25:53 +01:00
\subsubsection{Horizontal and Whole-day-ahead Forecasts}
2020-10-04 23:39:20 +02:00
\label{hori}
The upper-left in Figure \ref{f:inputs} illustrates the simplest way to
generate forecasts for a test day before it has started:
For each time of the day, the corresponding horizontal slice becomes the input
for a model.
With whole days being the unified time interval, each model is trained $H$
times, providing a one-step-ahead forecast.
While it is possible to have models of a different type be selected per time
step, that did not improve the accuracy in the empirical study.
As the models in this family do not include the test day's demand data in
their training sets, we see them as benchmarks to answer \textbf{Q4},
checking if a UDP can take advantage of real-time information.
The models in this family are as follows; we use prefixes, such as "h" here,
when methods are applied in other families as well:
\begin{enumerate}
2020-11-30 18:42:54 +01:00
\item \textit{naive}:
2020-10-04 23:39:20 +02:00
Observation from the same time step one week prior
2020-11-30 18:42:54 +01:00
\item \textit{trivial}:
2020-10-04 23:39:20 +02:00
Predict $0$ for all time steps
2020-11-30 18:42:54 +01:00
\item \textit{hcroston}:
2020-10-04 23:39:20 +02:00
Intermittent demand method introduced by \cite{croston1972}
2020-11-30 18:42:54 +01:00
\item \textit{hholt},
\textit{hhwinters},
\textit{hses},
\textit{hsma}, and
\textit{htheta}:
2020-10-04 23:39:20 +02:00
Exponential smoothing without calibration
2020-11-30 18:42:54 +01:00
\item \textit{hets}:
2020-10-04 23:39:20 +02:00
ETS calibrated as described by \cite{hyndman2008b}
2020-11-30 18:42:54 +01:00
\item \textit{harima}:
2020-10-04 23:39:20 +02:00
ARIMA calibrated as described by \cite{hyndman2008a}
\end{enumerate}
\textit{naive} and \textit{trivial} provide an absolute benchmark for the
actual forecasting methods.
\textit{hcroston} is often mentioned in the context of intermittent demand;
however, the method did not perform well at all.
Besides \textit{hhwinters} that always fits a seasonal component, the
calibration heuristics behind \textit{hets} and \textit{harima} may do so
as well.
With $k=7$, an STL decomposition is unnecessary here.