Use this file to discover all available pages before exploring further.
The most important train signal is the forecast error, which is the
difference between the observed value yτ and the prediction
y^τ, at time yτ:eτ=yτ−y^ττ∈{t+1,…,t+H}The train loss summarizes the forecast errors in different evaluation
metrics.
Mean Absolute ErrorCalculates Mean Absolute Error between
y and y_hat. MAE measures the relative prediction
accuracy of a forecasting method by calculating the
deviation of the prediction and the true
value at a given time and averages these devations
over the length of the series.MAE(yτ,y^τ)=H1τ=t+1∑t+H∣yτ−y^τ∣Parameters:
Mean Squared ErrorCalculates Mean Squared Error between
y and y_hat. MSE measures the relative prediction
accuracy of a forecasting method by calculating the
squared deviation of the prediction and the true
value at a given time, and averages these devations
over the length of the series.MSE(yτ,y^τ)=H1τ=t+1∑t+H(yτ−y^τ)2Parameters:
Root Mean Squared ErrorCalculates Root Mean Squared Error between
y and y_hat. RMSE measures the relative prediction
accuracy of a forecasting method by calculating the squared deviation
of the prediction and the observed value at a given time and
averages these devations over the length of the series.
Finally the RMSE will be in the same scale
as the original time series so its comparison with other
series is possible only if they share a common scale.
RMSE has a direct connection to the L2 norm.RMSE(yτ,y^τ)=H1τ=t+1∑t+H(yτ−y^τ)2Parameters:
Mean Absolute Percentage ErrorCalculates Mean Absolute Percentage Error between
y and y_hat. MAPE measures the relative prediction
accuracy of a forecasting method by calculating the percentual deviation
of the prediction and the observed value at a given time and
averages these devations over the length of the series.
The closer to zero an observed value is, the higher penalty MAPE loss
assigns to the corresponding error.MAPE(yτ,y^τ)=H1τ=t+1∑t+H∣yτ∣∣yτ−y^τ∣Parameters:
Symmetric Mean Absolute Percentage ErrorCalculates Symmetric Mean Absolute Percentage Error between
y and y_hat. SMAPE measures the relative prediction
accuracy of a forecasting method by calculating the relative deviation
of the prediction and the observed value scaled by the sum of the
absolute values for the prediction and observed value at a
given time, then averages these devations over the length
of the series. This allows the SMAPE to have bounds between
0% and 200% which is desirable compared to normal MAPE that
may be undetermined when the target is zero.sMAPE2(yτ,y^τ)=H1τ=t+1∑t+H∣yτ∣+∣y^τ∣∣yτ−y^τ∣Parameters:
Mean Absolute Scaled Error
Calculates the Mean Absolute Scaled Error between
y and y_hat. MASE measures the relative prediction
accuracy of a forecasting method by comparinng the mean absolute errors
of the prediction and the observed value against the mean
absolute errors of the seasonal naive model.
The MASE partially composed the Overall Weighted Average (OWA),
used in the M4 Competition.MASE(yτ,y^τ,y^τseason)=H1τ=t+1∑t+HMAE(yτ,y^τseason)∣yτ−y^τ∣Parameters:
RMAECalculates Relative Mean Absolute Error (RMAE) between
two sets of forecasts (from two different forecasting methods).
A number smaller than one implies that the forecast in the
numerator is better than the forecast in the denominator.rMAE(yτ,y^τ,y^τbase)=H1τ=t+1∑t+HMAE(yτ,y^τbase)∣yτ−y^τ∣Parameters:
Quantile LossComputes the quantile loss between y and y_hat.
QL measures the deviation of a quantile forecast.
By weighting the absolute deviation in a non symmetric way, the
loss pays more attention to under or over estimation.
A common value for q is 0.5 for the deviation from the median (Pinball loss).QL(yτ,y^τ(q))=H1τ=t+1∑t+H((1−q)(y^τ(q)−yτ)++q(yτ−y^τ(q))+)Parameters:
Multi-Quantile lossCalculates the Multi-Quantile loss (MQL) between y and y_hat.
MQL calculates the average multi-quantile Loss for
a given set of quantiles, based on the absolute
difference between predicted quantiles and observed values.MQL(yτ,[y^τ(q1),...,y^τ(qn)])=n1qi∑QL(yτ,y^τ(qi))The limit behavior of MQL allows to measure the accuracy
of a full predictive distribution mathbfhatF_tau with
the continuous ranked probability score (CRPS). This can be achieved
through a numerical integration technique, that discretizes the quantiles
and treats the CRPS integral with a left Riemann approximation, averaging over
uniformly distanced quantiles.CRPS(yτ,F^τ)=∫01QL(yτ,y^τ(q))dqParameters: