Diffusers How to use aionthegrind/anime-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("black-forest-labs/FLUX.1-dev", dtype=torch.bfloat16, device_map="cuda")
pipe.load_lora_weights("aionthegrind/anime-lora")
prompt = "asxfl, An emotional anime couple standing on a rainy city street under a single umbrella. The boy is holding the girl close, both wearing warm winter clothes, while the rain reflects neon lights from nearby shops."
image = pipe(prompt).images[0]