Diffusers How to use LyliaEngine/InkSediment_v2 with Diffusers:
pip install -U diffusers transformers accelerate
import torch
from diffusers import DiffusionPipeline
# switch to "mps" for apple devices
pipe = DiffusionPipeline.from_pretrained("OnomaAIResearch/Illustrious-xl-early-release-v0", dtype=torch.bfloat16, device_map="cuda")
pipe.load_lora_weights("LyliaEngine/InkSediment_v2")
prompt = "1girl, bangs, bare shoulders, black bow, black ribbon, blunt bangs, blush, bow, breasts, choker, cleavage, closed mouth, collarbone, earrings, eyebrows visible through hair, frills, green background, jewelry, looking at viewer, pink hair, ribbon, short hair, simple background, smile, solo, upper body"
image = pipe(prompt).images[0]