Views
No views yet
| Character | Series | Repo |
|---|---|---|
| Sakura Haruno | Naruto | AnimeLoom/sakura-haruno |
| Denji | Chainsaw Man | AnimeLoom/denji |
| Yuki Nagato | The Melancholy of Haruhi Suzumiya | AnimeLoom/yuki-nagato |
sdxl/ — for Animagine XL 3.1, used by AnimeLoom's identity-keyframe stagesd15/ — for DreamShaper 8, for lightweight AnimateDiff workflowstext story
↓
Story Decomposer (Gemini → Claude) → shot script
↓
SDXL + character LoRA + IP-Adapter → identity keyframe per shot (Phase 2)
↓
Wan2.2 I2V → motion driving clip (Phase 3a)
↓
Wan2.2-Animate face-lock → face from keyframe pasted
onto motion clip (Phase 3b)
↓
RIFE + Real-ESRGAN + GFPGAN → temporal/spatial upscale,
anime face restore (Phase 4)
↓
Cross-dissolve assembly → final 24fps video1import torch
2from diffusers import StableDiffusionXLPipeline
3from peft import PeftModel
4
5pipe = StableDiffusionXLPipeline.from_pretrained(
6 "cagliostrolab/animagine-xl-3.1",
7 torch_dtype=torch.float16,
8).to("cuda")
9
10# Load any AnimeLoom character LoRA
11pipe.unet = PeftModel.from_pretrained(
12 pipe.unet,
13 "AnimeLoom/sakura-haruno", # or AnimeLoom/denji, AnimeLoom/yuki-nagato
14 subfolder="sdxl",
15)
16
17img = pipe(
18 "1girl, sakura haruno, pink hair, cherry blossom forest, anime, masterpiece",
19 num_inference_steps=28,
20 guidance_scale=6.5,
21 height=1024, width=1024,
22).images[0]
23img.save("out.png")agents/character/trainer.py.
Recommended dataset: 15-30 clean anime reference images of the character at
512 or 1024 resolution.