Motivations
For time series forecasting tasks, we have applied many kinds of deep neural networks used for sequence modeling such as RNNs, Transformer and TCN, which are illustrated as below. Different from other types of sequence data, the information density of time series is lower than words or patches. Thus, we have to learn intrinsic features of time series like trend and seasonality to capture more useful information and enhance the explainability of the model. However, the sampling rate is also an important factor in signal processing. The downsampling of time series data often preserves most of the information. This paper proposes a sample convolution and interaction network, named SCINet, to utilize different downsamplings of time series data and iteratively extract hierarchical temporal information.
SCINet
SCINet is a hierarchical framework that enhances the predictability of the original time series by capturing temporal dependencies at multiple temporal resolutions, which is shown as follows.
The SCI-Block is the basic module of the SCINet, which splits the input time series $x$ into two sub-series $x_{\text{odd}}$ and $x_{\text{even}}$ and extracts both homogeneous and heterogeneous information through interactive learning with a set of distinct convolutional filters. Compared to the dilated convolutions used in the TCN architecture, SCI-Block achieves a larger receptive field and aggregates more essential information extracted from four distinct filters.
\[x_{\text{odd}}^s=x_{\text{odd}}\odot\exp(\phi(x_\text{even}))\qquad x_{\text{even}}^s=x_{\text{even}}\odot\exp(\psi(x_\text{odd}))\] \[\acute{x}_{\text{odd}}=x_{\text{odd}}^s+\rho(x_{\text{even}}^s)\qquad \acute{x}_{\text{even}}=x_{\text{even}}^s+\eta(x_{\text{odd}}^s)\]1 |
|
SCINet is constructed by arranging multiple SCI-Blocks hierarchically and presents as a binary tree structure. Stacking more layers of SCINets could achieve better prediction accuracy. Experiments show that SCINet outperforms on several datasets compared to other CNN-based methods.
1 |
|
Similar as dilated convolutions used in the TCN and other multi-scale or omni-scale 1D-CNN, the size of receptive field plays a vital role in time series modeling. SCINet enlarges its receptive field through multi-resolution downsampling and aggregates these temporal features, which is also a “non-local” strategy. We have to continue research other global modeling structure like Transformer, MLP-Mixer and etc.