SD1.5 Chibi Characters
Published by @chibi_factory · Community adapter
Generates compact 2-head-height chibi figures with oversized eyes and simplified limbs. Works with character prompts from any genre.
Usage
from diffusers import DiffusionPipeline
import torch
pipe = DiffusionPipeline.from_pretrained(
"runwayml/stable-diffusion-v1-5",
torch_dtype=torch.float16,
).to("cuda")
pipe.load_lora_weights("modelforgelab/sd15-chibi-lora")
image = pipe("your prompt here").images[0]
image.save("output.png")
Compatibility
- diffusers>=0.20
- Automatic1111