hdtrnk commited on
Commit
7896404
·
verified ·
1 Parent(s): 1fea5d2

Upload README.md

Browse files
Files changed (1) hide show
  1. README.md +98 -0
README.md ADDED
@@ -0,0 +1,98 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: openrail++
3
+ tags:
4
+ - image-to-video
5
+ - wan2.1
6
+ - finetune
7
+ - anime
8
+ - 480p
9
+ model_type: image-to-video
10
+ base_model: Wan2_1-I2V
11
+ ---
12
+
13
+ # Wanime I2V 14B – Anime-Style Image-to-Video (480p)
14
+
15
+ This is a Wan 2.1 14B image-to-video finetune model focused on anime-style motion and aesthetics at 480p. Based on the original weights released by Civitai creator [Zazc](https://civitai.com/models/1626197?modelVersionId=1840561), this model is locally prepped for use in WanGP with both FP16 and INT8 quantized formats.
16
+
17
+ ---
18
+
19
+ ## 📥 Files
20
+
21
+ - `Wanime-I2V-14B-480P_fp16_pure.safetensors` – Original FP16 weights for full precision video generation.
22
+ - `Wanime-I2V-14B-480P_quanto_fp16_int8.safetensors` – Quantized INT8 version for faster generation in lower VRAM setups.
23
+
24
+ ---
25
+
26
+ ## 🛠 How to Use (WanGP)
27
+
28
+ 1. Drop both `.safetensors` files into your WanGP `ckpts/` folder:
29
+ ```
30
+ D:/pinokio/api/wan.git/app/ckpts/
31
+ ```
32
+
33
+ 2. Save the following JSON file to:
34
+ ```
35
+ D:/pinokio/api/wan.git/app/finetunes/wan_i2v_wanime14B_480p.json
36
+ ```
37
+
38
+ 3. Sample `finetune JSON`:
39
+ ```jsonc
40
+ {
41
+ "model": {
42
+ "name": "Wanime I2V 14B 480P",
43
+ "architecture": "i2v",
44
+ "description": "Wanime 480p anime-style I2V model, optimized for local WanGP use.",
45
+ "URLs": [
46
+ "Wanime-I2V-14B-480P_fp16_pure.safetensors",
47
+ "Wanime-I2V-14B-480P_quanto_fp16_int8.safetensors"
48
+ ],
49
+ "modules": [],
50
+ "auto_quantize": false
51
+ },
52
+ "prompt": "",
53
+ "negative_prompt": "out of frame, lowres, text, error, cropped, worst quality, jpeg artifacts, ugly, duplicate, poorly drawn hands, malformed limbs, watermark",
54
+ "resolution": "832x480",
55
+ "video_length": 81,
56
+ "num_inference_steps": 8,
57
+ "guidance_scale": 1.0,
58
+ "multi_images_gen_type": 0
59
+ }
60
+ ```
61
+
62
+ 4. Launch with:
63
+ ```bash
64
+ python wgp.py --multiple-images
65
+ ```
66
+
67
+ ---
68
+
69
+ ## 🧠 About the Model
70
+
71
+ This model is derived from Zazc's Civitai release “WANime v3 I2V 14B”:
72
+ 🔗 https://civitai.com/models/1626197?modelVersionId=1840561
73
+
74
+ It was originally trained for consistent anime-character motion generation using Wan2.1’s powerful I2V backbone (14B params). This version is cleaned for `.safetensors` compatibility and formatted for WanGP.
75
+
76
+ ---
77
+
78
+ ## ✨ Recommended Prompts
79
+
80
+ - “An anime girl walking through a field of sunflowers, wide shot, cinematic composition”
81
+ - “Dramatic silhouette of a ninja jumping across rooftops at night, anime lighting”
82
+ - “Side-scrolling shot of a futuristic anime city, neon lights, sunset glow”
83
+
84
+ ---
85
+
86
+ ## 💡 Notes
87
+
88
+ - INT8 model recommended for RTX 3060 or lower
89
+ - FP16 model performs best on 4090/3090 class GPUs
90
+ - You can convert to BF16 or quantize your own using `--save-quantized`
91
+
92
+ ---
93
+
94
+ ## 🔖 Credits
95
+
96
+ - Base model: **Wan2.1 I2V 14B**
97
+ - Finetune creator: [Zazc on Civitai](https://civitai.com/models/1626197)
98
+ - Local packaging & WanGP prep: **hdtrnk**