# SimVPv2 **Repository Path**: chunyisong/SimVPv2 ## Basic Information - **Project Name**: SimVPv2 - **Description**: SimVP: Towards Simple yet Powerful Spatiotemporal Predictive Learning - **Primary Language**: Python - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-11-29 - **Last Updated**: 2022-12-06 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # SimVP: Towards Simple yet Powerful Spatiotemporal Predictive learning This is V2;V1: https://github.com/gaozhangyang/SimVP-Simpler-yet-Better-Video-Prediction https://zhuanlan.zhihu.com/p/527221138 This repository contains the implementation code for paper: **SimVP: Towards Simple yet Powerful Spatiotemporal Predictive learning** [https://arxiv.org/pdf/2211.12509.pdf] [Cheng Tan](https://westlake-drug-discovery.github.io/cheng_tan.html), [Zhangyang Gao](https://westlake-drug-discovery.github.io/zhangyang_gao.html), [Stan Z. Li](https://scholar.google.com/citations?user=Y-nyLGIAAAAJ&hl). ## Introduction This is the journal version of our previous conference work (SimVP: Simpler yet Better Video Prediction, In CVPR 2022). The overall framework of SimVP.


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).


## Dependencies * torch * scikit-image=0.16.2 * numpy * argparse * tqdm ## Overview * `API/` contains dataloaders and metrics. * `main.py` is the executable python file with possible arguments. * `model.py` contains the SimVP model. * `exp.py` is the core file for training, validating, and testing pipelines. ## Install This project has provided an environment setting file of conda, users can easily reproduce the environment by the following commands: ``` conda env create -f environment.yml conda activate SimVP ``` ### Moving MNIST dataset ``` cd ./data/moving_mnist bash download_mmnist.sh ``` ## 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 (tancheng@westlake.edu.cn). Enjoy!