Diffusers How to use mrcuddle/men_ass with Diffusers:
pip install -U diffusers transformers accelerate
import torch
from diffusers import DiffusionPipeline
# switch to "mps" for apple devices
pipe = DiffusionPipeline.from_pretrained("cgburgos/sdxl-1-0-base", dtype=torch.bfloat16, device_map="cuda")
pipe.load_lora_weights("mrcuddle/men_ass")
prompt = "<lora:realistic_male_ass:.5> nude slim man, bright, rear view, ass, testicles, penis, muscular back, tattoos, 8k, (Masterpiece, high quality:1.3), masterpiece, depth of field, bokeh, detailed, homoerotic, (homoerotic), highly detailed, sharp focus, intricate, smooth, elegant, fantasy, cinematic colors, masterpiece, matte, photorealistic, 4k,"
image = pipe(prompt).images[0]