How to use 00quebec/iPhone_realism with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("Qwen/Qwen-Image", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("00quebec/iPhone_realism") prompt = "interior of a bar with red ambient lighting, leopard-print upholstered booth seating, patterned red cushions, a wooden bar counter with bottles of Jameson, Redbreast, Teeling, and Cognac, hanging glassware above, a lit candle in a glass holder on a table, a menu, and a sign reading \"Join our Wine Club\" and \"MOET & CHANDON ROSE IMPERIAL\", smartphone photo, low-light capture, slight noise, warm color cast, handheld perspective, red lighting creating deep shadows and highlights on surfaces" image = pipe(prompt).images[0]
The community tab is the place to discuss and collaborate with the HF community!