clark-labs/clark-air-sana-1.6b-1.58bit · Hugging Face

Reddit r/LocalLLaMA Models

Summary

Clark Labs released Clark Air Sana 1.6B, a ternary-quantized version of the Sana 1.6B text-to-image transformer that is 8.6× smaller than FP16 while maintaining near-FP16 quality, enabling efficient deployment.

No content available
Original Article
View Cached Full Text

Cached at: 06/28/26, 05:59 AM

clark-labs/clark-air-sana-1.6b-1.58bit · Hugging Face

Source: https://huggingface.co/clark-labs/clark-air-sana-1.6b-1.58bit

https://huggingface.co/clark-labs/clark-air-sana-1.6b-1.58bit#clark-air-%C2%B7-sana-16bClark Air · Sana 1.6B

A Sana 1.6B text-to-image transformer compressed to ternary (~1.85 bits/weight): 8.6× smaller than FP16, near-FP16 quality.

Clark Air Sana 1.6B samples

Samples generated by Clark Air Sana 1.6B at 1.58 bits.

https://huggingface.co/clark-labs/clark-air-sana-1.6b-1.58bit#footprint-measuredFootprint (measured)

ArtifactSizevs FP16What it isFP16 transformer3.21 GB1× (100%)reference**Clark Air (packed)374 MB8.6× (≈12%)**packed ternary (clark\-air\-sana\-1\.6b\-packed\.safetensors)Clark Air (unpacked)3.21 GBcompatibilitythis repo’stransformer/, dequantized bf16, drop-indiffusers Measured~1.85 bits/weight → 8.6× smaller(374 MB packed ÷ 3.21 GB FP16).

ℹ️ Thetransformer/here is the unpacked compatibility format: it loads in stockdiffuserswith no custom code, so it is thesame 3.21 GBas FP16. The actual compressed artifact is the**374 MB packedsafetensors**in this repo.

https://huggingface.co/clark-labs/clark-air-sana-1.6b-1.58bit#usage-drop-in-diffusersUsage (drop-indiffusers)

import torch
from diffusers import SanaPipeline, SanaTransformer2DModel

transformer = SanaTransformer2DModel.from_pretrained(
    "clark-labs/clark-air-sana-1.6b-1.58bit", subfolder="transformer", torch_dtype=torch.bfloat16)
pipe = SanaPipeline.from_pretrained(
    "Efficient-Large-Model/Sana_1600M_512px_diffusers", transformer=transformer, torch_dtype=torch.bfloat16)
pipe.to("cuda")
pipe("a half empty bottle of red wine", num_inference_steps=20, guidance_scale=4.5).images[0].save("out.png")

https://huggingface.co/clark-labs/clark-air-sana-1.6b-1.58bit#aboutAbout

The transformer weights are quantized toternarywith group-wise scales; a small high-precision tail (~5% of parameters, the conditioning and projection layers) is kept at higher precision.

  • **Base:**Sana 1.6B, 512px

https://huggingface.co/clark-labs/clark-air-sana-1.6b-1.58bit#licenseLicense

Apache-2.0 © Clark Labs, Inc.

Similar Articles

NVlabs/Sana

GitHub Trending (daily)

NVlabs/Sana is an efficiency-oriented open-source codebase for high-resolution image and video generation, including multiple model variants and training/inference pipelines.

Efficient-Large-Model/SANA-WM_bidirectional

Hugging Face Models Trending

SANA-WM is an efficient 2.6B-parameter open-source world model for minute-scale video generation with precise camera control. It uses a hybrid linear diffusion transformer and a two-stage pipeline to produce 720p videos from images and text prompts.