HaoyiZhu commited on
Commit
e3432a6
·
verified ·
1 Parent(s): 2d84265

Add compliant dataset card

Browse files
Files changed (1) hide show
  1. README.md +90 -0
README.md ADDED
@@ -0,0 +1,90 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: fair-noncommercial-research-license
3
+ language:
4
+ - en
5
+ pretty_name: SANA-WM Example Training Dataset
6
+ task_categories:
7
+ - text-to-video
8
+ - image-to-video
9
+ tags:
10
+ - sana-wm
11
+ - sekai
12
+ - sekai-game
13
+ - world-model
14
+ - video-generation
15
+ - camera-control
16
+ - vae-latents
17
+ size_categories:
18
+ - 1K<n<10K
19
+ viewer: false
20
+ ---
21
+
22
+ # SANA-WM Example Training Dataset
23
+
24
+ This repository contains the Sekai-Game training subset and LTX2 VAE latent cache used by the SANA-WM stage-1 example training configs.
25
+
26
+ ## License and Terms
27
+
28
+ This dataset is redistributed for non-commercial research use only under the same terms as the official Sekai project. See `LICENSE` and `NOTICE.md`.
29
+
30
+ The raw videos, camera trajectories, annotations, and derived VAE latent cache are all subject to the Sekai non-commercial research-only terms. Do not use this dataset, or derivatives of it, for commercial purposes unless you have obtained separate rights from the original rights holders.
31
+
32
+ ## Source
33
+
34
+ This is a redistributed/repacked SANA-WM training subset derived from the official Sekai project:
35
+
36
+ - Project/code: https://github.com/Lixsp11/sekai-codebase
37
+ - Official dataset hub: https://huggingface.co/datasets/Lixsp11/Sekai-Project
38
+ - Paper: https://arxiv.org/abs/2506.15675
39
+
40
+ This repository is not the official Sekai release.
41
+
42
+ ## Contents
43
+
44
+ ```text
45
+ data/
46
+ sekai_game_train_961frames_16fps_ovl640/
47
+ sekai_game_train_00000000.zip
48
+ sekai_game_train_00000000_camera.npz
49
+ sekai_game_train_00000000_*.json
50
+ sekai_game_train_00000000_*.jsonl
51
+ vae_cache/
52
+ LTX2VAE_diffusers_704x1280/
53
+ sekai_game_train_961frames_16fps_ovl640/
54
+ sekai_game_train_00000000.zip
55
+ ```
56
+
57
+ The raw zip contains 1,618 MP4 clips and 1,618 JSON sidecars. The VAE cache zip contains 1,618 NPZ latent files. See `data_manifest.json` for byte sizes and entry counts.
58
+
59
+ ## Use with SANA-WM Stage-1 Training
60
+
61
+ Download the dataset into the root of an NVlabs-Sana checkout so that the `data/...` paths line up with the example configs:
62
+
63
+ ```bash
64
+ cd NVlabs-Sana
65
+ hf download Efficient-Large-Model/SANA-WM-example-training-dataset \
66
+ --repo-type dataset \
67
+ --local-dir .
68
+ ```
69
+
70
+ Then run a SANA-WM stage-1 config that expects:
71
+
72
+ ```yaml
73
+ data:
74
+ data_dir:
75
+ sekai_game: data/sekai_game_train_961frames_16fps_ovl640
76
+ vae_cache_dir: data/vae_cache/LTX2VAE_diffusers_704x1280/sekai_game_train_961frames_16fps_ovl640
77
+ ```
78
+
79
+ If you download the dataset elsewhere, update those two config paths accordingly.
80
+
81
+ ## Citation
82
+
83
+ ```bibtex
84
+ @article{li2025sekai,
85
+ title={Sekai: A Video Dataset towards World Exploration},
86
+ author={Zhen Li and Chuanhao Li and Xiaofeng Mao and Shaoheng Lin and Ming Li and Shitian Zhao and Zhaopan Xu and Xinyue Li and Yukang Feng and Jianwen Sun and Zizhen Li and Fanrui Zhang and Jiaxin Ai and Zhixiang Wang and Yuwei Wu and Tong He and Jiangmiao Pang and Yu Qiao and Yunde Jia and Kaipeng Zhang},
87
+ journal={arXiv preprint arXiv:2506.15675},
88
+ year={2025}
89
+ }
90
+ ```