Views
No views yet


QIE-2511-Studio-DeLight is an adapter LoRA developed for Qwen’s Qwen-Image-Edit-2511 image-to-image model, designed to relight images with neutral, studio-style illumination. The model removes existing lighting and replaces it with soft, evenly diffused light while preserving the original identity, composition, textures, and geometry. It ensures balanced exposure, realistic shading, and consistent results without artifacts, harsh highlights, or directional shadows.
Compatible with versions 2509 and 2511.
pip install -U diffusers transformers accelerate1import torch
2from diffusers import DiffusionPipeline
3from diffusers.utils import load_image
4
5# Switch to "mps" for Apple devices
6pipe = DiffusionPipeline.from_pretrained(
7 "Qwen/Qwen-Image-Edit-2511",
8 dtype=torch.bfloat16,
9 device_map="cuda"
10)
11
12pipe.load_lora_weights("prithivMLmods/QIE-2511-Studio-DeLight")
13
14prompt = "Neutral uniform lighting Preserve identity and composition"
15
16input_image = load_image(
17 "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/diffusers/cat.png"
18)
19
20image = pipe(image=input_image, prompt=prompt).images[0]Neutral uniform lighting Preserve identity and composition1@misc{prithiv_sakthi_2026,
2 author = { Prithiv Sakthi },
3 title = { QIE-2511-Studio-DeLight (Revision acb1bd8) },
4 year = 2026,
5 url = { https://huggingface.co/prithivMLmods/QIE-2511-Studio-DeLight },
6 doi = { 10.57967/hf/7713 },
7 publisher = { Hugging Face }
8}