Skip to content
Predict.ai
Glossary

WTF is WAPE?

A lag, a quantile, cold start — one-paragraph answers. Open a term if you want the full guide.

Accuracy & evaluation

Backtesting

Backtesting scores a forecast on a past window the model was not trained on. Done properly, you walk that window forward so you see many futures, not one lucky test month.

Baseline forecast

A baseline is a simple rule you must beat: last value, last week, last year, a seasonal naive, a moving average. If a fancy model cannot beat it on a fair backtest, keep the rule and save the drama.

Forecast bias

Bias is the average signed error: systematically high or systematically low. A forecast can have a handsome WAPE and still drain cash if it is always 6% heavy.

MAE

MAE is the average of |forecast − actual| in the original units. If every missed unit costs about the same, it is the everyday score that matches the cost.

MAPE

MAPE averages |error / actual| across periods. It is popular, easy to quote, and badly behaved when actuals are near zero or when small items should not outvote large ones.

MASE

MASE divides your MAE by the MAE of a naive seasonal baseline. Below 1 means you beat 'same as last week' (or last year). It is how you compare series of different sizes without a percent.

Prediction interval

A prediction interval is a range a new observation is expected to fall in. It is not a confidence interval around a mean, and it is not a guarantee. p10–p90 is a planning band, not a promise.

Quantile forecast

A quantile forecast predicts a percentile of the future distribution — p50 as the middle, p90 as a high plan — instead of (or in addition to) a single expected value.

RMSE

RMSE is the square root of the average squared error. Big misses hurt more than small ones. Use it when a rare large error is worse than many small ones — not because it looks more 'statistical.'

sMAPE

sMAPE is a percentage error that divides by the average of |actual| and |forecast|, so zeros on one side do not explode as violently as MAPE. It is still a percent, and it still is not a volume-weighted score.

Walk-forward validation

Walk-forward validation is backtesting that respects time: train on the past, predict the next horizon, slide the origin forward, repeat. You never train on a Wednesday to predict the Tuesday before it.

WAPE

WAPE is the sum of absolute errors divided by the sum of actuals, usually shown as a percent. It weights misses by volume, so a tiny SKU cannot dominate the score the way MAPE allows.

Data & drivers

Cold start

A cold start is a forecast for a series with little or no history of its own — a new SKU, a new store, a new region. You borrow shape from analogs until the series can stand up.

Covariate

A covariate is an extra series the forecast is allowed to see besides the target — price, promo, weather, spend. It only helps if you will have it (or a forecast of it) at prediction time.

Exogenous variable

In forecasting jargon, exogenous means 'coming from outside the target series.' Price, weather, and marketing spend are typical. The word does not make the variable good. Availability at forecast time does.

Feature engineering

Feature engineering turns raw timestamps and series into the lags, rolling stats, and calendar flags a model can use. In time series, the unforgivable sin is building those features with the future mixed in.

Hierarchical forecasting

Hierarchical forecasting predicts at more than one grain — SKU, category, chain — and reconciles so the pieces add up. It is how you keep a detailed plan that still matches the number finance already believed.

Intermittent demand

Intermittent demand is a series that is zero most of the time and jumps when it is not — spare parts, slow SKUs, B2B orders. Average error metrics lie; you often care about hit rate and size when a hit happens.

Lag feature

A lag feature is a past value of a series, shifted by k steps, used as an input. Lag 7 on daily data is 'the same weekday last week.' Most time-series models are careful lag machines.

Leading indicator

A leading indicator moves before the target. Clicks before orders, bookings before departures, parts in before units out. Same-day correlation is a mirror; the lag is the product.

Rolling window

A rolling window is a moving slice of the last n points used to compute a statistic — mean, max, standard deviation. It summarizes recent level without keeping every lag as its own column.

Try it on your data.

Connect an outcome and its history. Predict.ai finds the drivers, races the models, and keeps the forecast live — in the workspace, over the API, and through agents.