Diffusers How to use ronniealfaro/uyiko-e_Lora with Diffusers:
pip install -U diffusers transformers accelerate
import torch
from diffusers import DiffusionPipeline
# switch to "mps" for apple devices
pipe = DiffusionPipeline.from_pretrained("stabilityai/sdxl-turbo", dtype=torch.bfloat16, device_map="cuda")
pipe.load_lora_weights("ronniealfaro/uyiko-e_Lora")
prompt = "A graceful nine-tailed kitsune sits under a full moon, perched on the curved rooftop of a traditional Edo-period temple. Its fur glows softly in the moonlight, with swirling ethereal wisps surrounding it. Cherry blossoms float gently through the night air, carried by the wind. The background features a misty landscape with rolling hills and a quiet village below. The composition is inspired by Tsukioka Yoshitoshi’s supernatural Ukiyo-e prints, with deep blues and soft gradients enhancing the eerie yet elegant atmosphere."
image = pipe(prompt).images[0]