metadata
license: apache-2.0
language:
- en
base_model:
- Qwen/Qwen-Image-Edit-2511
pipeline_tag: image-to-image
library_name: diffusers
tags:
- lora
- art
- Studio-DeLight
QIE-2511-Studio-DeLight
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.
Quick Start with Diffusers
Compatible with versions 2509 and 2511.
pip install -U diffusers transformers accelerate
import torch
from diffusers import DiffusionPipeline
from diffusers.utils import load_image
# Switch to "mps" for Apple devices
pipe = DiffusionPipeline.from_pretrained(
"Qwen/Qwen-Image-Edit-2511",
dtype=torch.bfloat16,
device_map="cuda"
)
pipe.load_lora_weights("prithivMLmods/QIE-2511-Studio-DeLight")
prompt = "Neutral uniform lighting Preserve identity and composition"
input_image = load_image(
"https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/diffusers/cat.png"
)
image = pipe(image=input_image, prompt=prompt).images[0]
Trained on ModelScope.cn
Trigger Prompt
Use the following prompt to activate the studio relighting behavior:
Neutral uniform lighting Preserve identity and composition
Download Model
You can download the model files from the Files & versions tab: Download

