Views
No views yet
| Folder | Base model | Rank | Steps | Images | Resolution |
|---|---|---|---|---|---|
sdxl/ | cagliostrolab/animagine-xl-3.1 | 32 | 800 | 31 | 512 |
sd15/ | Lykon/dreamshaper-8 | 32 | 800 | 31 | 512 |
1girl, yuki nagato, short purple hair, glassesschool uniform, expressionless,
reading book, sailor collar).1import 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# AnimeLoom's training output is a PEFT adapter — load via PeftModel
11pipe.unet = PeftModel.from_pretrained(
12 pipe.unet,
13 "AnimeLoom/yuki-nagato",
14 subfolder="sdxl",
15)
16
17img = pipe(
18 "1girl, yuki nagato, short purple hair, glasses, school uniform, "
19 "anime, masterpiece, best quality, absurdres",
20 negative_prompt="blurry, low quality, deformed, extra fingers, 3d render",
21 num_inference_steps=28,
22 guidance_scale=6.5,
23 height=1024, width=1024,
24).images[0]
25img.save("yuki.png")1import torch
2from diffusers import StableDiffusionPipeline
3
4pipe = StableDiffusionPipeline.from_pretrained(
5 "Lykon/dreamshaper-8",
6 torch_dtype=torch.float16,
7).to("cuda")
8
9pipe.load_lora_weights(
10 "AnimeLoom/yuki-nagato",
11 subfolder="sd15",
12 weight_name="pytorch_lora_weights.safetensors",
13)
14
15img = pipe(
16 "1girl, yuki nagato, short purple hair, glasses, anime, masterpiece",
17 num_inference_steps=28,
18 guidance_scale=7.0,
19).images[0]0.85 - 1.15 (SDXL), 0.6 - 0.8 (SD 1.5)SDXL + this LoRA + IP-Adapter → identity keyframe (Phase 2)
↓
Wan2.2 I2V → motion driving clip (Phase 3a)
↓
Wan2.2-Animate face-lock → face from keyframe pasted onto motion (Phase 3b)
↓
RIFE + Real-ESRGAN + GFPGAN → temporal/spatial upscale + face restore (Phase 4)
↓
Final 24fps anime video with consistent character identity across shots.smiling, surprised) when needed.