Video-to-Video
English
JeffreyYzh commited on
Commit
6725228
·
verified ·
1 Parent(s): 8c6f752

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +57 -0
README.md CHANGED
@@ -1,3 +1,60 @@
1
  ---
 
2
  license: apache-2.0
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ pipeline_tag: video-to-video
3
  license: apache-2.0
4
+ language:
5
+ - en
6
+ base_model:
7
+ - Wan-AI/Wan2.1-T2V-1.3B
8
  ---
9
+
10
+ # DecMem: Towards Minute-Long Consistent World Generation with Decoupled Memory
11
+
12
+ We propose DecMem, a decoupled memory architecture that employs Sparse Global Memory for efficient fine-grained access to global history and Anchored Local Memory for stable and high-quality extrapolation.
13
+
14
+ [**Project Page**](https://jeffreyyzh.github.io/DecMem-Page/) | [**Paper**](https://arxiv.org/abs/2605.31336) | [**Code**](https://github.com/KlingAIResearch/DecMem)
15
+
16
+ ## Checkpoints
17
+
18
+ Download the Wan2.1 backbone (VAE + tokenizer weights used by the pipeline):
19
+
20
+ ```bash
21
+ huggingface-cli download Wan-AI/Wan2.1-T2V-1.3B \
22
+ --local-dir-use-symlinks False \
23
+ --local-dir wan_models/Wan2.1-T2V-1.3B
24
+ ```
25
+
26
+ Download DecMem trained checkpoints from HuggingFace:
27
+
28
+ ```bash
29
+ huggingface-cli download KlingTeam/DecMem --local-dir checkpoints
30
+ ```
31
+
32
+ Checkpoint layout expected by training / inference scripts:
33
+
34
+ ```
35
+ checkpoints/
36
+ └── decmem.pt # released weights
37
+ ```
38
+
39
+ ## Quick start
40
+
41
+ We provide the example video-pose pairs for quick inference. The inference is Block-by-block causal denoising manner with KV cache.
42
+
43
+ ```bash
44
+ bash scripts/infer_example.sh
45
+ ```
46
+
47
+ ## Citation
48
+ If you find our work helpful, please cite our paper:
49
+
50
+ ```bibtex
51
+ @misc{yang2026decmemminutelongconsistentworld,
52
+ title={DecMem: Towards Minute-Long Consistent World Generation with Decoupled Memory},
53
+ author={Zhenhao Yang and Xiaoshi Wu and Zhengyao Lv and Xiaoyu Shi and Xintao Wang and Pengfei Wan and Kun Gai and Kwan-Yee K. Wong},
54
+ year={2026},
55
+ eprint={2605.31336},
56
+ archivePrefix={arXiv},
57
+ primaryClass={cs.CV},
58
+ url={https://arxiv.org/abs/2605.31336},
59
+ }
60
+ ```