Views
No views yet


Qwen-Image-Edit-2511-Midnight-Noir-Eyes-Spotlight is an adapter LoRA developed for Qwen’s Qwen-Image-Edit-2511 image-to-image model, specifically designed to transform images into a dramatic midnight noir style with a strong emphasis on the eyes. The model enhances contrast, deep shadows, and focused spotlight lighting while preserving realistic textures and original facial details. It maintains high visual consistency across lighting, shadows, tones, and composition, ensuring the final output feels cinematic and emotionally intense. This makes it well suited for creating moody noir visuals with striking eye highlights without compromising image realism. Above are example outputs demonstrating the model’s ability to deliver high-quality, visually cohesive midnight noir results.
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/Qwen-Image-Edit-2511-Midnight-Noir-Eyes-Spotlight")
13
14prompt = "Transform into Midnight Noir Eyes Spotlight"
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]Transform into Midnight Noir Eyes Spotlight