This is a Official PyTorch implementation of CLCRN in the following paper:
- torch>=1.7.0
 - torch-geometric-temporal (installation see Github: torch_geometric_temporal)
 
Dependency can be installed using the following command:
conda env create --file env_clcrn.yaml
conda activate CLCRN_envThe four datasets after preprocessed are available at Google Drive.
Download the dataset and copy it into data/ dir. And Unzip them, and obtain data/{cloud_cover,component_of_wind,humidity,temperature}/
The raw datasets WeatherBench(Arxiv) can be downloaded from Github: WeatherBench. And the provided scripts/generate_training_data.py is used for data preprocessing.
Dump them into dataset_release/ files, and run the following commands to generate train/test/val dataset.
# Dataset preprocess
python scripts/generate_training_data.py  --input_seq_len=12 --output_horizon_len=12The configuration is set in /experiments/config_clcrn.yaml file for training process. There are three config files for clcrn/clcstn/baselines training. Run the following commands to train the target model.
# CLCRN
python train_clcrn.py --config_filename=./experiments/config_clcrn.yaml
# CLCSTN
python train_clcstn.py --config_filename=./experiments/config_clcstn.yaml
# Baselines
python train_baseline.py --config_filename=./experiments/config_baseline.yamlIf you find this repository, e.g., the code and the datasets, useful in your research, please cite the following paper:
@misc{lin2021conditional,
      title={Conditional Local Convolution for Spatio-temporal Meteorological Forecasting}, 
      author={Haitao Lin and Zhangyang Gao and Yongjie Xu and Lirong Wu and Ling Li and Stan. Z. Li},
      year={2021},
      eprint={2101.01000},
      archivePrefix={arXiv},
      primaryClass={cs.LG}
}
The repository is mainly based on DCRNN's Readme, seeing: https://github.com/liyaguang/DCRNN
And
https://arxiv.org/abs/1707.01926
The baselines are implementated based on torch-geometric-temporal, seeing: