Add model card for One-Forcing

#1
by nielsr HF Staff - opened
Files changed (1) hide show
  1. README.md +47 -0
README.md ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pipeline_tag: text-to-video
3
+ ---
4
+
5
+ # One-Forcing: Towards Stable One-Step Autoregressive Video Generation
6
+
7
+ One-Forcing enables stable **1-step autoregressive video generation** by augmenting DMD-based causal distillation with a shared noised-latent adversarial critic. It achieves state-of-the-art 1-step VBench performance and efficient framewise generation.
8
+
9
+ [**Project Page**](https://aurora-edu.github.io/one-forcing/) | [**Code**](https://github.com/Aurora-edu/One-Forcing) | [**Paper**](https://huggingface.co/papers/2605.23458)
10
+
11
+ ## Introduction
12
+
13
+ Recent advances have substantially improved real-time interactive video generation in the autoregressive regime. One-Forcing addresses the quality degradation and latency issues in one-step settings by augmenting the DMD objective with an auxiliary GAN loss. Experiments show it establishes state-of-the-art performance among one-step causal video generation methods.
14
+
15
+ ## Inference
16
+
17
+ To use the model, follow the installation instructions in the [official repository](https://github.com/Aurora-edu/One-Forcing). You can run inference using the following commands:
18
+
19
+ ```bash
20
+ # Download the trained One-Forcing checkpoint
21
+ hf download JiaqiFeng/OneForcing checkpoints/one_forcing.pt --local-dir .
22
+
23
+ # Run the inference script
24
+ bash scripts/infer.sh \
25
+ --checkpoint_path checkpoints/one_forcing.pt \
26
+ --prompt_path prompts/demos.txt \
27
+ --output_folder outputs
28
+ ```
29
+
30
+ ## Citation
31
+
32
+ ```bibtex
33
+ @article{feng2026oneforcing,
34
+ title={One-Forcing: Towards Stable One-Step Autoregressive Video Generation},
35
+ author={Feng, Jiaqi and Cui, Justin and Ban, Yuanhao and Hsieh, Cho-Jui},
36
+ journal={arXiv preprint arXiv:2605.23458},
37
+ year={2026},
38
+ eprint={2605.23458},
39
+ archivePrefix={arXiv},
40
+ primaryClass={cs.CV},
41
+ url={https://arxiv.org/abs/2605.23458}
42
+ }
43
+ ```
44
+
45
+ ## Acknowledgements
46
+
47
+ This codebase builds on [Causal Forcing](https://github.com/thu-ml/Causal-Forcing), [Self Forcing](https://github.com/guandeh17/Self-Forcing), [CausVid](https://github.com/tianweiy/CausVid), and the [Wan](https://github.com/Wan-Video/Wan2.1) model family.