CoolFace
Modelpublic

stevenlearns/Sana_Sprint_0.6B_1024px_teacher_diffusers

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes
Model Card

<p align="center" style="border-radius: 10px"> <img src="https://nvlabs.github.io/Sana/Sprint/asset/SANA-Sprint.png" width="50%" alt="logo"/> </p>

<div style="display:flex;justify-content: center"> <a href="https://huggingface.co/collections/Efficient-Large-Model/sana-sprint-67d6810d65235085b3b17c76"><img src="https://img.shields.io/static/v1?label=Weights&message=Huggingface&color=yellow"></a> &ensp; <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; <a href="https://nvlabs.github.io/Sana/Sprint/"><img src="https://img.shields.io/static/v1?label=Project&message=Github&color=blue&logo=github-pages"></a> &ensp; <a href="https://arxiv.org/pdf/2503.09641"><img src="https://img.shields.io/static/v1?label=Arxiv&message=SANA-Sprint&color=red&logo=arxiv"></a> &ensp; <a href="https://nv-sana.mit.edu/sprint"><img src="https://img.shields.io/static/v1?label=Demo&message=MIT&color=yellow"></a> &ensp; <a href="https://discord.gg/rde6eaE5Ta"><img src="https://img.shields.io/static/v1?label=Discuss&message=Discord&color=purple&logo=discord"></a> &ensp; </div>

๐Ÿฑ Sana Model Card

Demos

<div align="center"> <a href="https://www.youtube.com/watch?v=nIOhgf8eOU" target="blank"> <img src="https://img.youtube.com/vi/nIOhgf8eOU/0.jpg" alt="Demo Video of SANA-Sprint" style="width: 48%; display: block; margin: 0 auto; display: inline-block;"> </a> <a href="https://www.youtube.com/watch?v=OOZzkirgsAc" target="blank"> <img src="https://img.youtube.com/vi/OOZzkirgsAc/0.jpg" alt="Demo Video of SANA-Sprint" style="width: 48%; display: block; margin: 0 auto; display: inline-block;"> </a> </div>

Training Pipeline

<p align="center" border-raduis="10px"> <img src="https://nvlabs.github.io/Sana/Sprint/asset/content/paradigm.png" width="90%" alt="teaser_page1"/> </p>

Model Efficiency

<p align="center" border-raduis="10px"> <img src="https://nvlabs.github.io/Sana/Sprint/asset/content/teaser.png" width="95%" alt="teaser_page1"/> </p>

SANA-Sprint is an ultra-efficient diffusion model for text-to-image (T2I) generation, reducing inference steps from 20 to 1-4 while achieving state-of-the-art performance. Key innovations include: (1) A training-free approach for continuous-time consistency distillation (sCM), eliminating costly retraining; (2) A unified step-adaptive model for high-quality generation in 1-4 steps; and (3) ControlNet integration for real-time interactive image generation. SANA-Sprint achieves 7.59 FID and 0.74 GenEval in just 1 step โ€” outperforming FLUX-schnell (7.94 FID / 0.71 GenEval) while being 10ร— faster (0.1s vs 1.1s on H100). With latencies of 0.1s (T2I) and 0.25s (ControlNet) for 1024ร—1024 images on H100, and 0.31s (T2I) on an RTX 4090, SANA-Sprint is ideal for AI-powered consumer applications (AIPC).

Source code is available at https://github.com/NVlabs/Sana.

Model Description

  • โ€”Developed by: NVIDIA, Sana
  • โ€”Model type: One-Step Diffusion with Continuous-Time Consistency Distillation (Teacher Model)
  • โ€”Model size: 0.6B parameters
  • โ€”Model precision: torch.bfloat16 (BF16)
  • โ€”Model resolution: This model is developed to generate 1024px based images with multi-scale heigh and width.
  • โ€”License: Apache License 2.0. Additional Information: Gemma Terms of Use | Google AI for Developers for Gemma-2-2B-IT, Gemma Prohibited Use Policy | Google AI for Developers.
  • โ€”Model Description: This is a model that can be used to generate and modify images based on text prompts. It is a Linear Diffusion Transformer that uses one fixed, pretrained text encoders (Gemma2-2B-IT) and one 32x spatial-compressed latent feature encoder (DC-AE).
  • โ€”Resources for more information: Check out our GitHub Repository and the SANA-Sprint report on arXiv.

Model Sources

For research purposes, we recommend our generative-models Github repository (https://github.com/NVlabs/Sana), which is more suitable for both training and inference MIT Han-Lab provides free SANA-Sprint inference.

  • โ€”Repository: https://github.com/NVlabs/Sana
  • โ€”Demo: https://nv-sana.mit.edu/sprint
  • โ€”Guidance: https://github.com/NVlabs/Sana/asset/docs/sana_sprint.md

๐Ÿงจ Diffusers

Under construction PR

python
from diffusers import SanaPipeline
import torch

pipeline = SanaPipeline.from_pretrained(
    "Efficient-Large-Model/SANA_Sprint_0.6B_1024px_teacher_diffusers",
    torch_dtype=torch.bfloat16
)
pipeline.to("cuda:0")

prompt = "a tiny astronaut hatching from an egg on the moon"

image = pipeline(prompt=prompt, num_inference_steps=20).images[0]
image.save("sana_sprint_teacher.png")

Uses

Direct Use

The model is intended for research purposes only. Possible research areas and tasks include

  • โ€”Generation of artworks and use in design and other artistic processes.
  • โ€”Applications in educational or creative tools.
  • โ€”Research on generative models.
  • โ€”Safe deployment of models which have the potential to generate harmful content.
  • โ€”Probing and understanding the limitations and biases of generative models.

Excluded uses are described below.

Out-of-Scope Use

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.

Limitations and Bias

Limitations

  • โ€”The model does not achieve perfect photorealism
  • โ€”The model cannot render complex legible text
  • โ€”fingers, .etc in general may not be generated properly.
  • โ€”The autoencoding part of the model is lossy.

Bias

While the capabilities of image generation models are impressive, they can also reinforce or exacerbate social biases.