Diffusers How to use LyliaEngine/sinfully_stylish_PDXL-V02 with Diffusers:
pip install -U diffusers transformers accelerate
import torch
from diffusers import DiffusionPipeline
# switch to "mps" for apple devices
pipe = DiffusionPipeline.from_pretrained("LyliaEngine/Pony_Diffusion_V6_XL", dtype=torch.bfloat16, device_map="cuda")
pipe.load_lora_weights("LyliaEngine/sinfully_stylish_PDXL-V02")
prompt = "score_9, score_8_up, score_8, JanePorterXLP, pajamas, moody lighting, 1girl, sexy girl, solo,38 years old, hair in messy ponytail, green eyes, red hair, tan, eye contact, looking seductively at viewer, full color, candles in background"
image = pipe(prompt).images[0]