Views
No views yet


QIE-2511-Cinematic-FlatLog-Control is an adapter LoRA developed for Qwen’s Qwen-Image-Edit-2511 image-to-image model, designed to transform images into a cinematic flat log look. The model reduces contrast and saturation to achieve a neutral, log-style tonal response while preserving the original identity, composition, textures, and geometry. It enables consistent cinematic grading workflows with smooth highlight roll-off, controlled shadows, and artifact-free 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/QIE-2511-Cinematic-FlatLog-Control")
13
14prompt = "Transform into a cinematic flat log"
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 a cinematic flat log1@misc{prithiv_sakthi_2026,
2 author = { Prithiv Sakthi },
3 title = { QIE-2511-Cinematic-FlatLog-Control (Revision 6498672) },
4 year = 2026,
5 url = { https://huggingface.co/prithivMLmods/QIE-2511-Cinematic-FlatLog-Control },
6 doi = { 10.57967/hf/7732 },
7 publisher = { Hugging Face }
8}