Diffusers How to use BeQuiet94/trained-sd3-5-lora_c with Diffusers:
pip install -U diffusers transformers accelerate
import torch
from diffusers import DiffusionPipeline
# switch to "mps" for apple devices
pipe = DiffusionPipeline.from_pretrained("stabilityai/stable-diffusion-3.5-medium", dtype=torch.bfloat16, device_map="cuda")
pipe.load_lora_weights("BeQuiet94/trained-sd3-5-lora_c")
prompt = "The Word Love who a dolphine jumps through the o in style of lazypod1"
image = pipe(prompt).images[0]