Diffusers How to use LyliaEngine/ilustmix_v20 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("LyliaEngine/ilustmix_v20")
prompt = "8K, depth of field, focused subject, dynamic angle, sexy pose, best quality, detailed eyes, perfect eyes, realistic eyes, blonde hair, long hair, ponytail, (black highlights), blue eyes, (mascara), makeup, slim body, (chains), (web lines on wrists), (web lines on ankles), (web dress), (black dress), torn dress, revealing dress, small ass, medium breast, realistic breast, (topless), , BREAK, looking back, from behind, detailed ass, round ass, looking at viewer, movie perspective, dark background, abstract background, (neon lines), dynamic light, "
image = pipe(prompt).images[0]