CoolFace
Modelpublic

blanchon/nitro_e_512_lite

sourceHugging Facemitupdated 10mo agoView on Hugging Face
0likes2downloads
Model Card

Nitro-E 512px Lite - Fast Decoding Variant

This is the Nitro-E 512px text-to-image diffusion model with DC-AE-Lite for faster image decoding.

Key Features

  • โ€”๐Ÿš€ 1.8ร— Faster Decoding: Uses DC-AE-Lite instead of standard DC-AE
  • โ€”๐ŸŽฏ Same Quality: Similar reconstruction quality to standard DC-AE
  • โ€”โšก Drop-in Compatible: Uses the same Nitro-E transformer weights
  • โ€”๐Ÿ’พ Memory Efficient: Smaller decoder footprint

Performance Comparison

VAE VariantDecoding SpeedQuality
DC-AE (Standard)1.0ร—Reference
DC-AE-Lite1.8ร—Similar

This makes Nitro-E even faster for real-time applications!

Model Details

  • โ€”Transformer: Nitro-E 512px (304M parameters)
  • โ€”VAE: DC-AE-Lite-f32c32 (faster decoder)
  • โ€”Text Encoder: Llama-3.2-1B
  • โ€”Scheduler: Flow Matching with Euler Discrete
  • โ€”Attention: Alternating Subregion Attention (ASA)

Usage

python
import torch
from diffusers import NitroEPipeline

# Load the lite variant
pipe = NitroEPipeline.from_pretrained(
    "blanchon/nitro_e_512_lite",
    torch_dtype=torch.bfloat16
)
pipe.to("cuda")

# Generate image (1.8x faster decoding!)
prompt = "A hot air balloon in the shape of a heart grand canyon"
image = pipe(
    prompt=prompt,
    width=512,
    height=512,
    num_inference_steps=20,
    guidance_scale=4.5,
).images[0]

image.save("output.png")

When to Use This Variant

Use DC-AE-Lite (this model) when:

  • โ€”You need faster inference
  • โ€”Running real-time applications
  • โ€”Batch processing many images
  • โ€”Decoding is your bottleneck

Use standard DC-AE when:

  • โ€”You need absolute best reconstruction quality
  • โ€”Decoding speed is not critical

Technical Details

Architecture

  • โ€”Type: E-MMDiT (Efficient Multi-scale Masked Diffusion Transformer)
  • โ€”Attention: Alternating Subregion Attention (ASA)
  • โ€”Text Encoder: Llama-3.2-1B
  • โ€”VAE: DC-AE-Lite-f32c32 (1.8ร— faster decoding)
  • โ€”Scheduler: Flow Matching with Euler Discrete Scheduler
  • โ€”Latent Size: 16ร—16 for 512ร—512 images

Recommended Settings

  • โ€”Steps: 20 (good quality/speed trade-off)
  • โ€”Guidance Scale: 4.5 (balanced)
  • โ€”Resolution: 512ร—512 (optimized)

Citation

bibtex
@article{nitro-e-2025,
  title={Nitro-E: Efficient Training of Diffusion Models},
  author={AMD AI Group},
  journal={arXiv preprint arXiv:2510.27135},
  year={2025}
}

License

Copyright (c) 2025 Advanced Micro Devices, Inc. All Rights Reserved.

Licensed under the MIT License.

Related Models