Model reference · open weights
Qwen-Image-Ed-2511 is an open-weight image model from 1038lab. 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 | 1038lab |
|---|---|
| Type | Image models |
| Task | Image edit |
| Runs with | diffusers |
| Released | 2025-12-23 |
| Popularity | 10k downloads / month |
| Licence | Open weights |
About
This repository contains the FP8 quantized version of the Qwen-Image-Edit-2511 model. It is designed for efficient inference while maintaining high-quality image editing capabilities.
Qwen-Image-Edit-2511 Enhances Character Consistency In Qwen-Image-Edit-2511, character consistency has been significantly improved. The model can perform imaginative edits based on an input portrait while preserving the identity and visual characteristics of the subject.
Improved Multi-Person Consistency While Qwen-Image-Edit-2509 already improved consistency for single-subject editing, Qwen-Image-Edit-2511 further enhances consistency in multi-person group photos—enabling high-fidelity fusion of two separate person images into a coherent group shot:
Built-in Support for Community-Created LoRAs Since Qwen-Image-Edit’s release, the community has developed many creative and high-quality LoRAs—greatly expanding its expressive potential. Qwen-Image-Edit-2511 integrates selected popular LoRAs directly into the base model, unlocking their effects without extra tuning.
For example, Lighting Enhancement LoRA Realistic lighting control is now achievable out-of-the-box:
Another example, generating new viewpoints can now be done directly with the base model:
Industrial Design Applications
We’ve paid special attention to practical engineering scenarios—for instance, batch industrial product design:
…and material replacement for industrial components:
Enhanced Geometric Reasoning Qwen-Image-Edit-2511 introduces stronger geometric reasoning capability—e.g., directly generating auxiliary construction lines for design or annotation purposes:
pip install torch diffusers safetensors
import torch
from diffusers import QwenImageEditPipeline # or your compatible pipeline
model_path = "./Qwen-Image-Edit-2511-FP8"
pipe = QwenImageEditPipeline.from_pretrained(
model_path,
torch_dtype=torch.bfloat16
)
pipe.to("cuda")
# Example usage
# outputs = pipe(image=input_image, prompt="Your edit prompt")
This repository follows the Apache-2.0 license, consistent with the original Qwen model.
@misc{wu2025qwenimagetechnicalreport,
title={Qwen-Image Technical Report},
author={Wu et al.},
year={2025},
eprint={2508.02324},
archivePrefix={arXiv},
primaryClass={cs.CV},
url={https://arxiv.org/abs/2508.02324}
}
From the published model card. Full card on the HuggingFace links in the sidebar.
How it works
Using it via the API
Once AxForge deploys 1038lab-qwen-image-ed-2511 for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (1038lab-qwen-image-ed-2511 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":"1038lab-qwen-image-ed-2511","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.