Z-Image Turbo
Will it run on your hardware?
Pick your GPU memory - see which quantizations fit, and the cheapest card for the rest
Need an exact figure for your context length? Use the VRAM calculator.
Run it locally
Copy-paste - running in under a minute
vllm serve Tongyi-MAI/Z-Image-TurboNew to this? Start with Ollama · serve to many users with vLLM.
Deep dive
Notes, sources, and the full write-up
Z-Image Turbo
Z-Image Turbo is Alibaba's breakthrough text-to-image model. Using a Single-Stream DiT (S3-DiT) architecture and Decoupled-DMD distillation, it generates 1024×1024 images in just 8 inference steps - sub-second on H800 GPUs. Apache 2.0 licensed with 1.06M monthly downloads.
Why Z-Image Turbo stands out
- 8 inference steps - sub-second generation
- 6B parameters - lightweight DiT
- 16GB VRAM - fits consumer GPUs
- Apache 2.0 - fully open for commercial use
- Bilingual text - excellent Chinese and English rendering
- 701 adapters - growing LoRA ecosystem
- 1.06M monthly downloads - rapidly growing
Architecture
| Component | Description |
|---|---|
| S3-DiT | Single-Stream Diffusion Transformer |
| Decoupled-DMD | 8-step distillation algorithm |
| T5 text encoder | Semantic text conditioning |
| VAE | Image latent compression |
Usage
from diffusers import ZImagePipeline
import torch
pipe = ZImagePipeline.from_pretrained(
"Tongyi-MAI/Z-Image-Turbo",
torch_dtype=torch.bfloat16,
).to("cuda")
image = pipe(
"A photorealistic cat on a windowsill, sunset lighting",
height=1024, width=1024,
num_inference_steps=8,
guidance_scale=0.0,
).images[0]
image.save("output.png")When to use
- Fast iteration - instant image generation
- Commercial use - Apache 2.0 license
- Bilingual text - English and Chinese rendering
- Photorealism - excels at realistic images
Frequently asked
Quick answers to common questions
How much VRAM does Z-Image Turbo need?
Z-Image Turbo with 6B parameters needs significant VRAM depending on quantization. Use our VRAM calculator for an exact estimate.
Is Z-Image Turbo better than other Z-Image models?
Z-Image Turbo has 6B parameters with 8,192 context - a strong choice for text-to-image, fast-generation, image-rendering.
What license is Z-Image Turbo under?
Z-Image Turbo is released under the Apache 2.0 license, making it suitable for most commercial and personal projects.
What hardware runs Z-Image Turbo well?
With 6B parameters, Z-Image Turbo requires adequate VRAM. High-end GPUs like the RTX 4090 (24GB), RTX 5090 (32GB), or Mac Studio with unified memory are good options. Check our hardware directory for specific recommendations.
What is the best quantization for Z-Image Turbo?
Q4_K_M is the recommended sweet spot - ~98% of FP16 quality at ~27% of the size. Step up to Q5_K_M or Q8_0 only if you have spare VRAM. Use our VRAM calculator to compare.
What models compete with Z-Image Turbo?
Z-Image Turbo competes with other models in its class. Browse our model directory for comparisons, benchmarks, and community reviews to find the best fit.
Compare & pair with
Similar models and recommended hardware
Related models
Recommended hardware
Nearby options
Similar models and compatible hardware by spec
Comments coming soon
Configure NEXT_PUBLIC_GISCUS_REPO_ID and NEXT_PUBLIC_GISCUS_CATEGORY_ID at giscus.app to enable.