ERNIE-Image-Turbo Nunchaku Lite

This repository contains Nunchaku Lite SVDQuant checkpoints for baidu/ERNIE-Image-Turbo.

INT4 fixed-bias checkpoint: svdq-int4_r32-ernie-image-turbo-zero-svdq-fix-bias.safetensors is a re-converted INT4 SVDQuant checkpoint with the exported SVDQ target biases zeroed. This avoids a known activation-shift folded-bias issue in the original INT4 export that can produce noise-like outputs under nunchaku_lite. Prefer the NVFP4 checkpoint on Blackwell GPUs for speed and quality; use this INT4 fixed-bias variant when testing the INT4 path.

Checkpoints

File Quantization Rank Recommended hardware
svdq-int4_r32-ernie-image-turbo.safetensors INT4 32 Turing, Ampere, Ada
svdq-nvfp4_r32-ernie-image-turbo.safetensors NVFP4 32 Blackwell

Benchmark Results

Benchmark comparison

BF16 Diffusers Nunchaku Lite
BF16 Diffusers sample Nunchaku Lite sample

Usage

import torch
from diffusers import ErnieImagePipeline
from nunchaku_lite import load_nunchaku_pipeline

pipe = load_nunchaku_pipeline(
    "Baidu/ERNIE-Image-Turbo",
    pipeline_cls=ErnieImagePipeline,
    checkpoint="rootonchair/ERNIE-Image-Turbo-nunchaku-lite/svdq-nvfp4_r32-ernie-image-turbo.safetensors",
    precision="auto",
    torch_dtype=torch.bfloat16,
    device="cuda",
).to("cuda")

image = pipe(
    prompt="This is a photograph depicting an urban street scene. Shot at eye level, it shows a covered pedestrian or commercial street. Slightly below the center of the frame, a cyclist rides away from the camera toward the background, appearing as a dark silhouette against backlighting with indistinct details. The ground is paved with regular square tiles, bisected by a prominent tactile paving strip running through the scene, whose raised textures are clearly visible under the light. Light streams in diagonally from the right side of the frame, creating a strong backlight effect with a distinct Tyndall effect-visible light beams illuminating dust or vapor in the air and casting long shadows across the street. Several pedestrians appear on the left side and in the distance, some with their backs to the camera and others walking sideways, all rendered as silhouettes or semi-silhouettes. The overall color palette is warm, dominated by golden yellows and dark browns, evoking the atmosphere of dusk or early morning.",
    height=1264,
    width=848,
    num_inference_steps=8,
    guidance_scale=1.0,
    use_pe=True,
).images[0]

image.save("output.png")

For non-Blackwell GPUs, use the INT4 checkpoint instead:

checkpoint="rootonchair/ERNIE-Image-Turbo-nunchaku-lite/svdq-int4_r32-ernie-image-turbo.safetensors"

Citation

This is a quantized derivative of baidu/ERNIE-Image-Turbo. Please follow the base model's license and citation guidance.

Downloads last month
72
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for rootonchair/ERNIE-Image-Turbo-nunchaku-lite

Quantized
(10)
this model