File size: 7,122 Bytes
a0642fa eb53677 c57d7b5 eb53677 5590cea ee2b19b eb53677 7d6ba7b eb53677 7d6ba7b eb53677 ee2b19b eb53677 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 | ---
license: apache-2.0
---
<div align="center">
# โก Self Gradient Forcing
### Native Long Video Extrapolation
<p>
<a href='http://zhuang2002.github.io/SelfGradientForcing'><img src='https://img.shields.io/badge/Project-Page-Green'></a>
<a href="https://github.com/zhuang2002/Self_Gradient_Forcing"><img src="https://img.shields.io/badge/GitHub-Repository-black?logo=github"></a>
<a href="https://arxiv.org/abs/2607.20368"><img src="https://img.shields.io/badge/arXiv-2607.20368-b31b1b.svg"></a>
<a href="https://huggingface.co/JunhaoZhuang/Self_Gradient_Forcing"><img src="https://img.shields.io/badge/๐ค%20Hugging%20Face-Models-yellow" alt="Hugging Face"></a>
<a href="LICENSE"><img src="https://img.shields.io/badge/License-Apache--2.0-blue" alt="License"></a>
</p>
<p>
<strong>Junhao Zhuang, Shiyi Zhang, Yuxuan Bian, Yaowei Li, Yawen Luo, Yijun Liu, Weiyang Jin, Songchun Zhang, Xianglong He, Xuying Zhang, Haoran Li, Haoyang Huang, Zeyue Xue, Nan Duan</strong>
</p>
<p>
Joy Future Academy, JD
</p>
โญ If Self Gradient Forcing is useful for your research, please consider starring this repository.
</div>
<p align="center">
<img src="https://github.com/zhuang2002/Self_Gradient_Forcing/raw/main/assets/teaser.jpg" width="95%" alt="Self Gradient Forcing teaser">
</p>
## ๐ฅ News
- **2026-07-23**: Paper, model checkpoints, inference scripts, and training code are publicly released.
## ๐ง Method Overview
Self Gradient Forcing (SGF) recovers the missing context-gradient path for self-generated causal memory through a bounded two-pass replay, enabling models trained with only a 5-second window to extrapolate to minute-scale videos with stronger identity, layout, and temporal stability.
<p align="center">
<img src="https://github.com/zhuang2002/Self_Gradient_Forcing/raw/main/assets/flowchat.jpg" width="95%" alt="Self Gradient Forcing method overview">
</p>
## ๐ ๏ธ Installation
The environment follows the Causal-Forcing setup.
```bash
conda create -n self_gradient_forcing python=3.10 -y
conda activate self_gradient_forcing
pip install -r requirements.txt
pip install flash-attn --no-build-isolation
python setup.py develop
```
## โฌ๏ธ Download Weights
```bash
bash scripts/download_weights.sh
```
The script uses the Hugging Face CLI command `hf` by default. Set `HF_CLI=huggingface-cli` if your environment still uses the older command name.
It downloads:
- Wan base models to `wan_models/Wan2.1-T2V-1.3B` and `wan_models/Wan2.1-T2V-14B`.
- All [Causal-Forcing](https://github.com/thu-ml/Causal-Forcing) initialization checkpoints under `checkpoints/init/framewise/` and `checkpoints/init/chunkwise/`: `ar_diffusion.pt`, `causal_cd.pt`, and `causal_ode.pt`.
- Released SGF inference checkpoints to `checkpoints/framewise/ar/model.pt` and `checkpoints/chunkwise/ar/model.pt`.
- The training prompt list to `prompts/vidprom_filtered_extended.txt`.
## ๐ Inference
The default prompt file is `prompts/test_prompt.txt` with 8 prompts. The launcher uses 8 GPUs when at least 8 GPUs are visible; otherwise it falls back to single-GPU serial inference. By default it generates `963` latent frames, which decode to about 240 seconds of video at 16 fps.
The inference script takes the release setting name (`framewise` or `chunkwise`) and selects the matching config and checkpoint automatically:
- framewise config: `configs/self_gradient_forcing_framewise.yaml`
- chunkwise config: `configs/self_gradient_forcing_chunkwise.yaml`
The long-video KV-cache geometry is set in `scripts/infer_self_gradient_forcing.sh`. Framewise defaults to `KV_CACHE_SINK=4`, `KV_CACHE_FIFO_FRAMES=16`, and `KV_CACHE_CURRENT_FRAMES=1`, so the actual `--kv_cache_max_frames` passed to `inference.py` is `4 + 16 + 1 = 21`. Chunkwise defaults to `KV_CACHE_SINK=3`, `KV_CACHE_FIFO_FRAMES=6`, and `KV_CACHE_CURRENT_FRAMES=3`, so `--kv_cache_max_frames` is `12`.
### Framewise
```bash
bash scripts/infer_self_gradient_forcing.sh framewise
```
This uses:
```text
configs/self_gradient_forcing_framewise.yaml
checkpoints/framewise/ar/model.pt
```
### Chunkwise
```bash
bash scripts/infer_self_gradient_forcing.sh chunkwise
```
This uses:
```text
configs/self_gradient_forcing_chunkwise.yaml
checkpoints/chunkwise/ar/model.pt
```
### Custom checkpoint or prompt file
```bash
bash scripts/infer_self_gradient_forcing.sh \
framewise \
checkpoints/framewise/ar/model.pt \
prompts/test_prompt.txt
```
Useful overrides:
```bash
NUM_OUTPUT_FRAMES=963 SEED=42 OUTPUT_ROOT=outputs/demo \
bash scripts/infer_self_gradient_forcing.sh framewise
```
For trained checkpoints, pass the release setting first and the produced `logs/.../checkpoint_model_*/model.pt` path as the second argument. The script uses EMA weights by default; set `USE_EMA=0` if you explicitly want the non-EMA `generator` weights.
## ๐๏ธ Training
### Framewise SGF
```bash
bash scripts/train_self_gradient_forcing_framewise.sh
```
Equivalent explicit form:
```bash
bash scripts/train_self_gradient_forcing_framewise.sh \
configs/self_gradient_forcing_framewise.yaml \
logs/sgf_framewise
```
### Chunkwise SGF
```bash
bash scripts/train_self_gradient_forcing_chunkwise.sh
```
Equivalent explicit form:
```bash
bash scripts/train_self_gradient_forcing_chunkwise.sh \
configs/self_gradient_forcing_chunkwise.yaml \
logs/sgf_chunkwise
```
The launchers accept `[config.yaml] [logdir] [extra train.py args...]`, matching the multi-node launcher convention used by the reference training scripts. They support single-node and multi-node training. For multi-node jobs, run the same command on every node within the gather window. The scripts auto-register nodes through `.rendezvous/` on the shared filesystem and launch static `torchrun` with an IP master address.
Useful overrides:
```bash
GATHER_WINDOW=90 NUM_GPUS=8 MASTER_PORT=29501 ENABLE_WANDB=1 \
bash scripts/train_self_gradient_forcing_framewise.sh logs/sgf_framewise
NNODES=2 NODE_RANK=0 MASTER_ADDR=10.0.0.1 NUM_GPUS=8 \
bash scripts/train_self_gradient_forcing_chunkwise.sh logs/sgf_chunkwise
```
## ๐ Acknowledgements
This implementation builds on the Wan video model ecosystem and follows the installation conventions of `thu-ml/Causal-Forcing`. We thank the open-source community for the infrastructure that made this release possible.
## ๐ฎ Contact
For questions, please contact Junhao Zhuang at [zhuangjh23@mails.tsinghua.edu.cn](mailto:zhuangjh23@mails.tsinghua.edu.cn).
## ๐ License
This project is released under the Apache-2.0 license.
### ๐ Citation
```bibtex
@misc{zhuang2026selfgradientforcingnative,
title={Self Gradient Forcing: Native Long Video Extrapolation},
author={Junhao Zhuang and Shiyi Zhang and Yuxuan Bian and Yaowei Li and Yawen Luo and Yijun Liu and Weiyang Jin and Songchun Zhang and Xianglong He and Xuying Zhang and Haoran Li and Haoyang Huang and Zeyue Xue and Nan Duan},
year={2026},
eprint={2607.20368},
archivePrefix={arXiv},
primaryClass={cs.CV},
url={https://arxiv.org/abs/2607.20368},
}
```
|