Model reference · open weights
LLaDA-Image is an open-weight image model from inclusionAI. AxForge deploys and operates it for you on dedicated EU-owned hardware — with the licence handled where one is required.
Available as managed deployment — configured and operated for you on dedicated EU hardware, quoted per deployment.
What it is
| Released by | inclusionAI |
|---|---|
| Type | Image models |
| Task | Text→image |
| Parameters (lead) | 6.5B |
| Runs with | diffusers |
| Released | 2026-08-28 |
| Popularity | 15 downloads / month |
| Licence | Open weights |
About
Welcome to the official repository for LLaDA-Image, a unified model for high-quality image generation and editing.
LLaDA-Image is a competitive 6B-parameter open-source unified image generation and editing model family. It includes LLaDA-Image, a 50-step Base model for high-quality text-to-image generation and instruction-guided editing, and LLaDA-Image-Turbo, a 4-step distilled model for fast generation and editing. Both variants support practical text-to-image generation, VQ-conditioned generation, reference-image editing, and Chinese--English text rendering.
This repository provides the checkpoints and Diffusers-based inference code for the LLaDA-Image model family.
| Model | Description | Sampling steps | Hugging Face (Checkpoints) | ModelScope (Checkpoints) |
|---|---|---|---|---|
| LLaDA-Image | Base model for high-fidelity text-to-image generation and instruction-guided editing. | 50 | BF16: inclusionAI/LLaDA-ImageFP8: inclusionAI/LLaDA-Image-FP8 | BF16: inclusionAI/LLaDA-ImageFP8: inclusionAI/LLaDA-Image-FP8 |
| LLaDA-Image-Turbo | Distilled model for fast generation and editing. | 4 | BF16: inclusionAI/LLaDA-Image-TurboFP8: inclusionAI/LLaDA-Image-Turbo-FP8 | BF16: inclusionAI/LLaDA-Image-TurboFP8: inclusionAI/LLaDA-Image-Turbo-FP8 |
The implementation has been used with Python 3.11, PyTorch 2.8, Transformers 4.57.6, and Diffusers 0.39.0.
git clone https://github.com/inclusionAI/LLaDA-Image.git
cd LLaDA-Image
conda create -n llada-image python=3.11 -y
conda activate llada-image
pip install -r requirements.txt
The pipeline accepts a prompt and, for editing, an optional reference image.
Use the Base checkpoint for high-fidelity generation and editing. Its recommended sampling configuration is 50 steps.
import torch
from src import LLaDAImagePipeline
# Load the pipeline. The model is downloaded from Hugging Face on first use.
pipe = LLaDAImagePipeline.from_pretrained(
"inclusionAI/LLaDA-Image",
torch_dtype=torch.bfloat16,
device="cuda",
)
# Generate an image.
prompt = (
"A cinematic photograph of a red fox standing in fresh snow, "
"soft winter light, detailed fur, shallow depth of field"
)
negative_prompt = ""
image = pipe(
prompt=prompt,
negative_prompt=negative_prompt,
generation_mode="text",
height=1024,
width=1024,
num_inference_steps=50,
guidance_scale=5.0,
generator=torch.Generator("cuda").manual_seed(42),
).images[0]
image.save("llada-image-base.png")
Use the Turbo checkpoint for fast generation and editing. Its recommended sampling configuration is 4 steps.
[!NOTE] For LLaDA-Image-Turbo inference, you can try setting
stochastic_samplingtofalseinscheduler/scheduler_config.json, which may produce sharper details in some cases.
import torch
from src import LLaDAImagePipeline
# Load the distilled Turbo checkpoint.
pipe = LLaDAImagePipeline.from_pretrained(
"inclusionAI/LLaDA-Image-Turbo",
torch_dtype=torch.bfloat16,
device="cuda",
)
prompt = "A quiet observatory above a sea of clouds at sunrise, golden light, wide-angle photograph"
image = pipe(
prompt=prompt,
generation_mode="text",
height=1024,
width=1024,
num_inference_steps=4,
guidance_scale=1.0,
generator=torch.Generator("cuda").manual_seed(42),
).images[0]
image.save("llada-image-turbo.png")
Both checkpoints support the following modes. Text and VQ-conditioned generation require height and width divisible by 16; image editin
From the published model card. Full card on the HuggingFace links in the sidebar.
Using it via the API
Once AxForge deploys llada-image for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (llada-image below is illustrative; you get the exact model name on deployment.)
$ curl -sS https://api.axforge.ai/v1/images/generations \
-H "Authorization: Bearer $AXFORGE_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"llada-image","prompt":"a red bicycle","size":"1024x1024"}'
Create an account — your API key is available in the console. 3M free tokens every 30 days with every new account.