RioShiina commited on
Commit
e4288e9
·
verified ·
1 Parent(s): 79e1a03

Add Anima-3.8B-v1.1 architecture model.

Browse files
core/pipelines/workflow_recipes/_partials/conditioning/anima-3.8b-v1.1.yaml ADDED
@@ -0,0 +1,81 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ nodes:
2
+ unet_loader:
3
+ class_type: Anima38BV2Loader
4
+ title: "anima.3-8B-v2"
5
+ clip_loader:
6
+ class_type: CLIPLoader
7
+ title: "Load CLIP"
8
+ params:
9
+ type: "stable_diffusion"
10
+ device: "default"
11
+ qwen35_loader:
12
+ class_type: AnimaQwen35Loader
13
+ title: "Load Qwen3.5 4B (Anima)"
14
+ pos_prompt:
15
+ class_type: Anima38BV2Prompt
16
+ title: "anima.3-8B-v2 Prompt (Positive)"
17
+ neg_prompt:
18
+ class_type: Anima38BV2Prompt
19
+ title: "anima.3-8B-v2 Prompt (Negative)"
20
+ vae_loader:
21
+ class_type: VAELoader
22
+ title: "Load VAE"
23
+
24
+ connections:
25
+ - from: "unet_loader:0"
26
+ to: "ksampler:model"
27
+ - from: "unet_loader:0"
28
+ to: "pos_prompt:model"
29
+ - from: "unet_loader:0"
30
+ to: "neg_prompt:model"
31
+ - from: "clip_loader:0"
32
+ to: "pos_prompt:native_clip"
33
+ - from: "clip_loader:0"
34
+ to: "neg_prompt:native_clip"
35
+ - from: "qwen35_loader:0"
36
+ to: "pos_prompt:qwen35_clip"
37
+ - from: "qwen35_loader:0"
38
+ to: "neg_prompt:qwen35_clip"
39
+ - from: "pos_prompt:0"
40
+ to: "ksampler:positive"
41
+ - from: "neg_prompt:0"
42
+ to: "ksampler:negative"
43
+ - from: "vae_loader:0"
44
+ to: "vae_decode:vae"
45
+ - from: "vae_loader:0"
46
+ to: "vae_encode:vae"
47
+
48
+ dynamic_lora_chains:
49
+ lora_chain:
50
+ template: "LoraLoader"
51
+ output_map:
52
+ "unet_loader:0": "model"
53
+ "clip_loader:0": "clip"
54
+ input_map:
55
+ "model": "model"
56
+ "clip": "clip"
57
+ end_input_map:
58
+ "model": ["ksampler:model", "pos_prompt:model", "neg_prompt:model"]
59
+ "clip": ["pos_prompt:native_clip", "neg_prompt:native_clip"]
60
+
61
+ dynamic_anima_controlnet_lllite_chains:
62
+ anima_controlnet_lllite_chain:
63
+ ksampler_node: "ksampler"
64
+
65
+ dynamic_conditioning_chains:
66
+ conditioning_chain:
67
+ ksampler_node: "ksampler"
68
+ clip_source: "clip_loader:0"
69
+
70
+ dynamic_pid_chains:
71
+ pid_chain:
72
+ ksampler_node: "ksampler"
73
+
74
+ ui_map:
75
+ positive_prompt: "pos_prompt:prompt"
76
+ negative_prompt: "neg_prompt:prompt"
77
+ model_name: "unet_loader:model_name"
78
+ unet_name: "unet_loader:model_name"
79
+ clip_name: "clip_loader:clip_name"
80
+ qwen35_model: "qwen35_loader:qwen35_model"
81
+ vae_name: "vae_loader:vae_name"
yaml/constants.yaml CHANGED
@@ -127,6 +127,14 @@ RESOLUTION_MAP:
127
  "3:4 (Classic Portrait)": [896, 1152]
128
  "3:2 (Photography)": [1216, 832]
129
  "2:3 (Photography Portrait)": [832, 1216]
 
 
 
 
 
 
 
 
130
  anima-3.8b:
131
  "1:1 (Square)": [1024, 1024]
132
  "16:9 (Landscape)": [1344, 768]
@@ -280,6 +288,7 @@ MULTIPLIERS_MAP:
280
  qwen-image: 1
281
  longcat-image: 1
282
  cosmos-predict2: 1
 
283
  anima-3.8b: 1
284
  anima: 1
285
  newbie-image: 1
 
127
  "3:4 (Classic Portrait)": [896, 1152]
128
  "3:2 (Photography)": [1216, 832]
129
  "2:3 (Photography Portrait)": [832, 1216]
130
+ anima-3.8b-v1.1:
131
+ "1:1 (Square)": [1024, 1024]
132
+ "16:9 (Landscape)": [1344, 768]
133
+ "9:16 (Portrait)": [768, 1344]
134
+ "4:3 (Classic)": [1152, 896]
135
+ "3:4 (Classic Portrait)": [896, 1152]
136
+ "3:2 (Photography)": [1216, 832]
137
+ "2:3 (Photography Portrait)": [832, 1216]
138
  anima-3.8b:
139
  "1:1 (Square)": [1024, 1024]
140
  "16:9 (Landscape)": [1344, 768]
 
288
  qwen-image: 1
289
  longcat-image: 1
290
  cosmos-predict2: 1
291
+ anima-3.8b-v1.1: 1
292
  anima-3.8b: 1
293
  anima: 1
294
  newbie-image: 1
yaml/file_list.yaml CHANGED
@@ -518,6 +518,11 @@ file:
518
  source: "hf"
519
  repo_id: "nvidia/Cosmos-Predict2-14B-Text2Image"
520
  repository_file_path: "model.pt"
 
 
 
 
 
521
  # Anima-3.8B
522
  - filename: "Anima-3.8B.safetensors"
523
  source: "hf"
 
518
  source: "hf"
519
  repo_id: "nvidia/Cosmos-Predict2-14B-Text2Image"
520
  repository_file_path: "model.pt"
521
+ # Anima-3.8B-v1.1
522
+ - filename: "Anima-3.8B-v1.1.safetensors"
523
+ source: "hf"
524
+ repo_id: "lylogummy/Anima-3.8B"
525
+ repository_file_path: "difussion_models/Anima-3.8B-v1.1.safetensors"
526
  # Anima-3.8B
527
  - filename: "Anima-3.8B.safetensors"
528
  source: "hf"
yaml/model_architecture_features.yaml CHANGED
@@ -90,6 +90,15 @@ cosmos-predict2:
90
  - conditioning
91
  - vae
92
 
 
 
 
 
 
 
 
 
 
93
  anima-3.8b:
94
  enabled_chains:
95
  - lora
 
90
  - conditioning
91
  - vae
92
 
93
+ anima-3.8b-v1.1:
94
+ enabled_chains:
95
+ - lora
96
+ - conditioning
97
+ - anima_controlnet_lllite
98
+ - vae
99
+ - pid
100
+
101
+
102
  anima-3.8b:
103
  enabled_chains:
104
  - lora
yaml/model_architectures.yaml CHANGED
@@ -14,6 +14,7 @@ architecture_order:
14
  - "Qwen-Image"
15
  - "LongCat-Image"
16
  - "Cosmos-Predict2"
 
17
  - "Anima-3.8B"
18
  - "Anima"
19
  - "NewBie-Image"
@@ -69,6 +70,9 @@ architectures:
69
  "Cosmos-Predict2":
70
  model_type: "cosmos-predict2"
71
  controlnet_key: "Cosmos-Predict2"
 
 
 
72
  "Anima-3.8B":
73
  model_type: "anima-3.8b"
74
  controlnet_key: "Anima"
 
14
  - "Qwen-Image"
15
  - "LongCat-Image"
16
  - "Cosmos-Predict2"
17
+ - "Anima-3.8B-v1.1"
18
  - "Anima-3.8B"
19
  - "Anima"
20
  - "NewBie-Image"
 
70
  "Cosmos-Predict2":
71
  model_type: "cosmos-predict2"
72
  controlnet_key: "Cosmos-Predict2"
73
+ "Anima-3.8B-v1.1":
74
+ model_type: "anima-3.8b-v1.1"
75
+ controlnet_key: "Anima"
76
  "Anima-3.8B":
77
  model_type: "anima-3.8b"
78
  controlnet_key: "Anima"
yaml/model_defaults.yaml CHANGED
@@ -159,6 +159,15 @@ Cosmos-Predict2:
159
  sampler_name: "euler"
160
  scheduler: "karras"
161
 
 
 
 
 
 
 
 
 
 
162
  Anima-3.8B:
163
  _defaults:
164
  steps: 32
@@ -167,7 +176,6 @@ Anima-3.8B:
167
  scheduler: "beta"
168
  positive_prompt: "masterpiece, best quality, high quality, newest, year 2025, year 2024, \nDescription:\n"
169
  negative_prompt: "worst quality, low quality, score_1, score_2, score_3, blurry, jpeg artifacts, sepia"
170
- filename_prefix: "anima_3_8b"
171
 
172
  Anima:
173
  _defaults:
 
159
  sampler_name: "euler"
160
  scheduler: "karras"
161
 
162
+ Anima-3.8B-v1.1:
163
+ _defaults:
164
+ steps: 40
165
+ cfg: 6.0
166
+ sampler_name: "res_multistep"
167
+ scheduler: "beta"
168
+ positive_prompt: "masterpiece, best quality, high quality, newest, year 2025, year 2024, \nDescription:\n"
169
+ negative_prompt: "worst quality, low quality, score_1, score_2, score_3, blurry, jpeg artifacts, sepia"
170
+
171
  Anima-3.8B:
172
  _defaults:
173
  steps: 32
 
176
  scheduler: "beta"
177
  positive_prompt: "masterpiece, best quality, high quality, newest, year 2025, year 2024, \nDescription:\n"
178
  negative_prompt: "worst quality, low quality, score_1, score_2, score_3, blurry, jpeg artifacts, sepia"
 
179
 
180
  Anima:
181
  _defaults:
yaml/model_list.yaml CHANGED
@@ -239,6 +239,15 @@ Checkpoint:
239
  unet: "cosmos_predict2_14B_t2i.pt"
240
  clip: "oldt5_xxl_fp8_e4m3fn_scaled.safetensors"
241
  vae: "wan_2.1_vae.safetensors"
 
 
 
 
 
 
 
 
 
242
  Anima-3.8B:
243
  latent_type: sd3_latent
244
  models:
 
239
  unet: "cosmos_predict2_14B_t2i.pt"
240
  clip: "oldt5_xxl_fp8_e4m3fn_scaled.safetensors"
241
  vae: "wan_2.1_vae.safetensors"
242
+ Anima-3.8B-v1.1:
243
+ latent_type: sd3_latent
244
+ models:
245
+ - display_name: "lylogummy/Anima-3.8B-v1.1"
246
+ components:
247
+ unet: "Anima-3.8B-v1.1.safetensors"
248
+ clip: "qwen_3_06b_base.safetensors"
249
+ qwen35_model: "qwen35_4b.safetensors"
250
+ vae: "qwen_image_vae.safetensors"
251
  Anima-3.8B:
252
  latent_type: sd3_latent
253
  models:
yaml/pid.yaml CHANGED
@@ -4,7 +4,7 @@ PiD:
4
  architectures: ["flux2", "flux2-kv", "ideogram-4", "lens", "ernie-image"]
5
  - filepath: "pid_1.5_qwenimage_1024_to_4096_4step_int8_convrot.safetensors"
6
  latent_format: "qwenimage"
7
- architectures: ["anima", "anima-3.8b", "qwen-image", "krea-2"]
8
  - filepath: "pid_1.5_flux1_1024_to_4096_4step_int8_convrot.safetensors"
9
  latent_format: "flux"
10
  architectures: ["longcat-image", "newbie-image", "z-image", "kandinsky-5", "ovis-image", "omnigen2", "chroma1", "hidream-i1", "flux1", "boogu-image"]
 
4
  architectures: ["flux2", "flux2-kv", "ideogram-4", "lens", "ernie-image"]
5
  - filepath: "pid_1.5_qwenimage_1024_to_4096_4step_int8_convrot.safetensors"
6
  latent_format: "qwenimage"
7
+ architectures: ["anima-3.8b-v1.1", "anima-3.8b", "anima", "qwen-image", "krea-2"]
8
  - filepath: "pid_1.5_flux1_1024_to_4096_4step_int8_convrot.safetensors"
9
  latent_format: "flux"
10
  architectures: ["longcat-image", "newbie-image", "z-image", "kandinsky-5", "ovis-image", "omnigen2", "chroma1", "hidream-i1", "flux1", "boogu-image"]