Lawrence-cj commited on
Commit
2940d73
·
verified ·
1 Parent(s): 331dbdf

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +116 -0
README.md ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: other
3
+ license_name: nvidia-open-model-license
4
+ license_link: >-
5
+ https://www.nvidia.com/en-us/agreements/enterprise-software/nvidia-open-model-license/
6
+ library_name: sana, sana-video
7
+ tags:
8
+ - text-to-video
9
+ - SANA-Video
10
+ - 720p_5s_pretrained_model
11
+ - BF16
12
+ - diffusion
13
+ - LTX2-VAE
14
+ language:
15
+ - en
16
+ - zh
17
+ base_model:
18
+ - Efficient-Large-Model/SANA-Video_2B_720p
19
+ pipeline_tag: text-to-video
20
+ ---
21
+ <p align="center" style="border-radius: 10px">
22
+ <img src="https://cdn-uploads.huggingface.co/production/uploads/645b5b09bc7518912e1f9733/N0VlE-y1pau-4O1RlijQd.png" width="98%" alt="logo"/>
23
+ </p>
24
+
25
+ <div style="display:flex;justify-content: center">
26
+ <a href="https://hf.co/collections/Efficient-Large-Model/sana-video"><img src="https://img.shields.io/static/v1?label=Weights&message=Huggingface&color=yellow"></a> &ensp;
27
+ <a href="https://github.com/NVlabs/Sana"><img src="https://img.shields.io/static/v1?label=Code&message=Github&color=blue&logo=github"></a> &ensp;
28
+ <a href="https://nvlabs.github.io/Sana/Video/"><img src="https://img.shields.io/static/v1?label=Project&message=Github&color=blue&logo=github-pages"></a> &ensp;
29
+ <a href="https://arxiv.org/pdf/2509.24695"><img src="https://img.shields.io/static/v1?label=Arxiv&message=SANA-Video&color=red&logo=arxiv"></a> &ensp;
30
+ </div>
31
+
32
+
33
+ # 🐱 SANA-Video Model Card
34
+
35
+ <!-- <div align="center">
36
+ <a href="https://www.youtube.com/watch?v=nI_Ohgf8eOU" target="_blank">
37
+ <img src="https://img.youtube.com/vi/nI_Ohgf8eOU/0.jpg" alt="Demo Video of SANA-Video" style="width: 48%; display: block; margin: 0 auto; display: inline-block;">
38
+ </a>
39
+ <a href="https://www.youtube.com/watch?v=OOZzkirgsAc" target="_blank">
40
+ <img src="https://img.youtube.com/vi/OOZzkirgsAc/0.jpg" alt="Demo Video of SANA-Video" style="width: 48%; display: block; margin: 0 auto; display: inline-block;">
41
+ </a>
42
+ </div> -->
43
+
44
+
45
+ SANA-Video is a small, ultra-efficient diffusion model designed for rapid generation of high-quality, minute-long videos at resolutions up to 720×1280.
46
+
47
+ Key innovations and efficiency drivers include:
48
+
49
+ (1) **Linear DiT**: Leverages linear attention as the core operation, offering significantly more efficiency than vanilla attention when processing the massive number of tokens required for video generation.
50
+
51
+ (2) **Constant-Memory KV Cache for Block Linear Attention**: Implements a block-wise autoregressive approach that uses the cumulative properties of linear attention to maintain global context at a fixed memory cost, eliminating the traditional KV cache bottleneck and enabling efficient, minute-long video synthesis.
52
+
53
+ SANA-Video achieves exceptional efficiency and cost savings: its training cost is only **1%** of MovieGen's (**12 days on 64 H100 GPUs**). Compared to modern state-of-the-art small diffusion models (e.g., Wan 2.1 and SkyReel-V2), SANA-Video maintains competitive performance while being **16×** faster in measured latency.
54
+ SANA-Video is deployable on RTX 5090 GPUs, accelerating the inference speed for a 5-second 720p video from 71s down to 29s (2.4× speedup), setting a new standard for low-cost, high-quality video generation.
55
+
56
+ Source code is available at https://github.com/NVlabs/Sana.
57
+
58
+ # 🐱 How to Inference
59
+
60
+ Refer to: https://github.com/NVlabs/Sana/blob/main/asset/docs/sana_video.md#1-inference-with-txt-file
61
+
62
+ # diffusers pipeline
63
+
64
+ refer to: https://huggingface.co/Efficient-Large-Model/SANA-Video_2B_720p_diffusers
65
+
66
+ ### Model Description
67
+
68
+ - **Developed by:** NVIDIA, Sana
69
+ - **Model type:** Efficient Video Generation with Block Linear Diffusion Transformer
70
+ - **Model size:** 2B parameters
71
+ - **Model precision:** torch.bfloat16 (BF16)
72
+ - **Model resolution:** This model is developed to generate 720p resolution 81(5s) frames videos with multi-scale heigh and width.
73
+ - **Model Description:** This is a model that can be used to generate and modify videos based on text prompts.
74
+ It is a Linear Diffusion Transformer that uses LTX2-vae one 32x32x8 spatial-temporal-compressed latent feature encoder ([LTX2](https://github.com/Lightricks/LTX-2)).
75
+ - **Resources for more information:** Check out our [GitHub Repository](https://github.com/NVlabs/Sana) and the [SANA-Video report on arXiv](https://arxiv.org/pdf/2509.24695).
76
+
77
+ ### Model Sources
78
+
79
+ For research purposes, we recommend our `generative-models` Github repository (https://github.com/NVlabs/Sana), which is more suitable for both training and inference
80
+ - **Repository:** https://github.com/NVlabs/Sana
81
+ - **Guidance:** https://github.com/NVlabs/Sana/asset/docs/sana_video.md
82
+
83
+ ## License/Terms of Use
84
+
85
+ GOVERNING TERMS: This trial service is governed by the [NVIDIA API Trial Terms of Service](https://assets.ngc.nvidia.com/products/api-catalog/legal/NVIDIA%20API%20Trial%20Terms%20of%20Service.pdf). Use of this model is governed by the [NVIDIA Open Model License Agreement](https://www.nvidia.com/en-us/agreements/enterprise-software/nvidia-open-model-license/).
86
+
87
+ ## Uses
88
+
89
+ ### Direct Use
90
+
91
+ The model is intended for research purposes only. Possible research areas and tasks include
92
+
93
+ - Generation of artworks and use in design and other artistic processes.
94
+ - Applications in educational or creative tools.
95
+ - Research on generative models.
96
+ - Safe deployment of models which have the potential to generate harmful content.
97
+
98
+ - Probing and understanding the limitations and biases of generative models.
99
+
100
+ Excluded uses are described below.
101
+
102
+ ### Out-of-Scope Use
103
+
104
+ The model was not trained to be factual or true representations of people or events, and therefore using the model to generate such content is out-of-scope for the abilities of this model.
105
+
106
+ ## Limitations and Bias
107
+
108
+ ### Limitations
109
+
110
+ - The model does not achieve perfect photorealism
111
+ - The model cannot render complex legible text
112
+ - fingers, .etc in general may not be generated properly.
113
+ - The autoencoding part of the model is lossy.
114
+
115
+ ### Bias
116
+ While the capabilities of video generation models are impressive, they can also reinforce or exacerbate social biases.