import torch
from diffusers import DiffusionPipeline
# switch to "mps" for apple devices
pipe = DiffusionPipeline.from_pretrained("runwayml/stable-diffusion-v1-5", dtype=torch.bfloat16, device_map="cuda")
pipe.load_lora_weights("Norod78/sd15-bender-lora")
prompt = "A picture of a a cute little bender working as a pokemon trainer"
image = pipe(prompt).images[0]LoRA for generating images of Bender, the robot from futurama
A diffusers version of this model
Make sure to include the word "Bender" in your prompt
- Downloads last month
- 8
Model tree for Norod78/sd15-bender-lora
Base model
runwayml/stable-diffusion-v1-5