juliensimon/stable-diffusion-v1-5-pokemon-lora
470
Stable Diffusion v1.5 — Pokemon LoRA
LoRA adaptation weights for Stable Diffusion v1.5, fine-tuned on the Pokemon BLIP Captions dataset (833 samples) to generate Pokemon-style images from text prompts.
Video walkthrough: Fine-tune Stable Diffusion with LoRA for as low as $1
Training Details
Usage
from diffusers import StableDiffusionPipeline
import torch
pipe = StableDiffusionPipeline.from_pretrained(
"runwayml/stable-diffusion-v1-5", torch_dtype=torch.float16
)
pipe.unet.load_attn_procs("juliensimon/stable-diffusion-v1-5-pokemon-lora")
pipe.to("cuda")
image = pipe("a pokemon with blue fire wings").images[0]Resources
- Training script and training logs are included in the repository.
