Diffusers How to use renderartist/technically-color-qwen 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("renderartist/technically-color-qwen")
prompt = "t3chnic4lly 1960s teenage man, face closeup on his face professionally shot cinematic still, you can see the man's eyes and his teeth, the neck and the collar of the shirt. He's kneeling beside a fluffy husky dog near a pond, a large oak tree and a big rock in the ground. "
image = pipe(prompt).images[0]