This is the official implementation of PatchMixer: PatchMixer: A Patch-Mixing Architecture for Long-Term Time Series Forecasting.
PatchMixer is primarily composed of two convolutional layers and two forecasting heads. Its distinguishing feature is the “patch-mixing” design, which means the model initially segments the input time series into smaller temporal patches and subsequently integrates information from both within and between these patches.
- Install requirements.
pip install -r requirements.txt
-
Download data. You can download all the datasets from Autoformer. Create a seperate folder
./dataset
and put all the csv files in the directory. -
Training. All the scripts are in the directory
./scripts/PatchMixer
. For example, if you want to get the multivariate forecasting results for weather dataset, just run the following command, and you can open./result.txt
to see the results once the training is done, log file is in./logs/LongForecasting/*.log
:
sh ./scripts/PatchMixer/weather.sh
You can also add --use_multi_gpu
for multi-gpu training. The hyperparameters can be adjusted as your needs (e.g. different patch length, different sequence lengths and prediction lengths.). We also provide codes for the baseline models.
Quantitatively, PatchMixer demonstrates an overall relative reduction of
Our results highlight two key improvements. First, PatchMixer achieves a 3x faster inference and 2x faster training speed compared to PatchTST. Second, PatchTST's performance is highly sensitive to the length of the look-back window, particularly when it reaches or exceeds 1440. In contrast, PatchMixer exhibits fewer fluctuations in both inference and training times with increasing historic length, contributing to higher accuracy and computational efficiency.
In principle, the large receptive field is beneficial for improving performance, while the receptive field of the look-back window in time series analysis is also important. Generally speaking, a powerful LTSF model with a strong temporal relation extraction capability should be able to achieve better results with longer input historical sequences. Recent baselines such as PatchTST, DLinear, and our PatchMixer consistently reduce the MSE scores as the receptive field increases, which confirms our model's capability to learn from the longer look-back window.
We appreciate the following GitHub repo very much for the valuable code base and datasets:
https://github.com/yuqinie98/PatchTST
https://github.com/wanghq21/MICN
https://github.com/thuml/TimesNet
https://github.com/cure-lab/LTSF-Linear
https://github.com/zhouhaoyi/Informer2020
https://github.com/thuml/Autoformer
https://github.com/MAZiqing/FEDformer
https://github.com/ts-kim/RevIN
If you have any questions or concerns, please submit an issue on GitHub. For matters that require more direct communication, you can also email us at [email protected]. However, we kindly encourage the use of issues for better transparency and tracking.
If you find this repository useful in your research, please consider citing our paper:
@inproceedings{Gong2023PatchMixerAP,
title={PatchMixer: A Patch-Mixing Architecture for Long-Term Time Series Forecasting},
author={Zeying Gong and Yujin Tang and Junwei Liang},
year={2023},
url={https://api.semanticscholar.org/CorpusID:263334059}
}