How to use from the
Use from the
Diffusers library
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-large", dtype=torch.bfloat16, device_map="cuda")
pipe.load_lora_weights("badul13/simpletuner-lora")

prompt = "A powerful earth-element bear depicted in pixel art style, featuring a strong build with fur in rich brown and earthy green tones, accented by beige highlights. Stone-like patterns on its paws and shoulders reinforce its connection to the earth, while its glowing golden eyes convey calm strength. Small pixelated rocks and soil particles surround the bear, enhancing its grounded theme, with a plain white background keeping the focus on its earthy design."
image = pipe(prompt).images[0]

Not-For-All-Audiences

This repository has been marked as containing sensitive content and may contain potentially harmful and sensitive information.

View model card