Diffusers How to use Shero448/kyonyuu_fantasy_pack with Diffusers:
pip install -U diffusers transformers accelerate
import torch
from diffusers import DiffusionPipeline
# switch to "mps" for apple devices
pipe = DiffusionPipeline.from_pretrained("John6666/prefect-illustrious-xl-v20p-sdxl", dtype=torch.bfloat16, device_map="cuda")
pipe.load_lora_weights("Shero448/kyonyuu_fantasy_pack")
prompt = "anime coloring, anime screencap, masterpiece, detailed face, nsfw, uncensored,"
image = pipe(prompt).images[0]