Diffusers How to use Hililuhwoop/TickleDiffusion with Diffusers:
pip install -U diffusers transformers accelerate
import torch
from diffusers import DiffusionPipeline
# switch to "mps" for apple devices
pipe = DiffusionPipeline.from_pretrained("Hililuhwoop/TickleDiffusion", dtype=torch.bfloat16, device_map="cuda")
prompt = "1girl, blue eyes, blonde hair, medium hair, topless, breasts, nipples, tears, blush, smile, teeth, laughing, open mouth, (upper body:1.1), arms behind head, armpits, bound, bondage, restrained, bdsm, hands on hips, hands on waist, torso grab, grabbing, (tickling:1.35), (disembodied limb:1.3), (pov hands:1.13), (pov:1.35), tkl"
image = pipe(prompt).images[0]