How to use KappaNeuro/kirigami 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/stable-diffusion-xl-base-1.0", dtype=torch.bfloat16, device_map="cuda") pipe.load_lora_weights("KappaNeuro/kirigami") prompt = "KIRIGAMI - Kirie. Kirigami. A tale of the most romantic folk lore story, told in layered Papercutting. Shadowbox. Layered presentation folklore narrative telling. Fine details. Professional art. High production value. Tilt-shift photography. Fluorescent bright color paints and fine point details. Purple/Black/Green color layer shift. Augmented projection mapped lighting showing lifelike microscopic details. laser etched detail. Story telling craft." image = pipe(prompt).images[0]