Skip to content

OpenSTL: A Comprehensive Benchmark of Spatio-Temporal Predictive Learning

License

Notifications You must be signed in to change notification settings

wp8733684/OpenSTL

Repository files navigation

SimVP: Towards Simple yet Powerful Spatiotemporal Predictive learning

📘Documentation | 🛠️Installation | 🚀Model Zoo | 🆕News

This repository is an open-source project for video prediction benchmarks, which contains the implementation code for paper:

SimVP: Towards Simple yet Powerful Spatiotemporal Predictive learning
Cheng Tan, Zhangyang Gao, Siyuan Li, Stan Z. Li.

Introduction

This is the journal version of our previous conference work (SimVP: Simpler yet Better Video Prediction, In CVPR 2022).

It is worth noticing that the hidden Translator $h$ in SimVP can be replaced by any MetaFormer block (satisfying the macro design of token mixing and channel mixing).


The performance of SimVPs on the Moving MNIST dataset. For the training time, the less the better. For the inference efficiency (frames per second), the more the better.


Quantitative results of different methods on the Moving MNIST dataset ($10 \rightarrow 10$ frames).


(back to top)

Overview

  • simvp/api contains an experiment runner.
  • simvp/core contains core training plugins and metrics.
  • simvp/datasets contains datasets and dataloaders.
  • simvp/methods/ contains training methods for various video prediction methods.
  • simvp/models/ contains the main network architectures of various video prediction methods.
  • simvp/modules/ contains network modules and layers.
  • tools/non_dist_train.py is the executable python file with possible arguments for training, validating, and testing pipelines.

News and Updates

[2023-02-18] SimVP v0.1.0 is released. Benchmark results and config files are updated for MMNIST, TaxiBJ, and WeatherBench datasets.

Installation

This project has provided an environment setting file of conda, users can easily reproduce the environment by the following commands:

git clone https://github.com/chengtan9907/SimVPv2
cd SimVPv2
conda env create -f environment.yml
conda activate SimVP
python setup.py develop
Dependencies
  • argparse
  • numpy
  • hickle
  • scikit-image=0.16.2
  • torch
  • timm
  • tqdm

Please refer to install.md for more detailed instructions.

Getting Started

Please see get_started.md for the basic usage. Here is an example of single GPU training SimVP+gSTA on Moving MNIST dataset.

bash tools/prepare_data/download_mmnist.sh
python tools/non_dist_train.py -d mmnist --lr 1e-3 -c ./configs/mmnist/simvp/SimVP_gSTA.py --ex_name mmnist_simvp_gsta

(back to top)

Overview of Model Zoo

We support various video prediction methods and will provide benchmarks on various video prediction datasets. We are working on add new methods and collecting experiment results.

Citation

If you are interested in our repository and our paper, please cite the following paper:

@article{tan2022simvp,
  title={SimVP: Towards Simple yet Powerful Spatiotemporal Predictive Learning},
  author={Tan, Cheng and Gao, Zhangyang and Li, Stan Z},
  journal={arXiv preprint arXiv:2211.12509},
  year={2022}
}

Contact

If you have any questions, feel free to contact us through email. Enjoy!

(back to top)

About

OpenSTL: A Comprehensive Benchmark of Spatio-Temporal Predictive Learning

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 98.1%
  • Shell 1.9%