Views
No views yet
| Model | Character | Trigger Word | Notes |
|---|---|---|---|
| (coming soon) | — | — | — |
1# Example using diffusers
2from diffusers import StableDiffusionPipeline
3import torch
4
5pipe = StableDiffusionPipeline.from_pretrained("base-model-id", torch_dtype=torch.float16)
6pipe.load_lora_weights("baleenme/story-shorts-character-lora", weight_name="character_name.safetensors")
7
8prompt = "TRIGGER_WORD, flat illustration, simple linework, white background, smiling"
9image = pipe(prompt).images[0]