Diffusers How to use saveasART-org/LatexBikesuit with Diffusers:
pip install -U diffusers transformers accelerate
import torch
from diffusers import DiffusionPipeline
# switch to "mps" for apple devices
pipe = DiffusionPipeline.from_pretrained("ByteDance/SDXL-Lightning", dtype=torch.bfloat16, device_map="cuda")
pipe.load_lora_weights("saveasART-org/LatexBikesuit")
prompt = "UNICODEsolo, 1girl, red eyes,scarf, standing,huge breasts, <lora:LatexBikesuit:1>,latex bikesuit,cross-laced, very long hair, very long hair, navel,latex gloves, night, cityscape, cyberpunk, black gloves,,skin tight, shiny, skindentation, "
image = pipe(prompt).images[0]