Introduction
Temporal normalization has proven to be essential in neural forecasting tasks, as it enables network’s non-linearities to express themselves. Forecasting scaling methods take particular interest in the temporal dimension where most of the variance dwells, contrary to other deep learning techniques likeBatchNorm that normalizes across batch and temporal dimensions, and
LayerNorm that normalizes across the feature dimension. Currently we support the following techniques: std, median, norm, norm1, invariant,
revin.
References
- Kin G. Olivares, David Luo, Cristian Challu, Stefania La Vattiata, Max Mergenthaler, Artur Dubrawski (2023). “HINT: Hierarchical Mixture Networks For Coherent Probabilistic Forecasting”. Neural Information Processing Systems, submitted. Working Paper version available at arxiv.
- Taesung Kim and Jinhee Kim and Yunwon Tae and Cheonbok Park and Jang-Ho Choi and Jaegul Choo. “Reversible Instance Normalization for Accurate Time-Series Forecasting against Distribution Shift”. ICLR 2022.
- David Salinas, Valentin Flunkert, Jan Gasthaus, Tim Januschowski (2020). “DeepAR: Probabilistic forecasting with autoregressive recurrent networks”. International Journal of Forecasting.

1. Auxiliary Functions
masked_median
x along dim, ignoring values where
mask is False. x and mask need to be broadcastable.
Parameters:
Returns:
masked_mean
x along dimension, ignoring values where
mask is False. x and mask need to be broadcastable.
Parameters:
Returns:
2. Scalers
minmax_statistics
Returns:
minmax1_statistics
Returns:
std_statistics
dim dimension.
For example, for base_windows models, the scaled features are obtained as (with dim=1):
Parameters:
Returns:
robust_statistics
base_windows models, the scaled features are obtained as (with dim=1):
Parameters:
Returns:
invariant_statistics
base_windows models, the scaled features are obtained as (with dim=1):
Parameters:
Returns:
identity_statistics
Returns:
3. TemporalNorm Module
TemporalNorm
Module
Temporal Normalization
Standardization of the features is a common requirement for many
machine learning estimators, and it is commonly achieved by removing
the level and scaling its variance. The TemporalNorm module applies
temporal normalization over the batch of inputs as defined by the type of scaler.
If scaler_type is revin learnable normalization parameters are added on top of
the usual normalization technique, the parameters are learned through scale decouple
global skip connections. The technique is available for point and probabilistic outputs.
Parameters:
dim (int, optional): Dimension over to compute scale and shift. Defaults to -1.
eps (float, optional): Small value to avoid division by zero. Defaults to 1e-6.
num_features (int, optional): For RevIN-like learnable affine parameters initialization. Defaults to None.
TemporalNorm.transform
Returns:
TemporalNorm.inverse_transform
Returns:

