RioShiina commited on
Commit
7115b3f
·
verified ·
1 Parent(s): 6257082

Upload folder using huggingface_hub

Browse files
core/pipelines/workflow_recipes/_partials/conditioning/boogu-image.yaml ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ nodes:
2
+ unet_loader:
3
+ class_type: UNETLoader
4
+ title: "Load Diffusion Model"
5
+ params:
6
+ weight_dtype: "default"
7
+ clip_loader:
8
+ class_type: CLIPLoader
9
+ title: "Load CLIP"
10
+ params:
11
+ type: "boogu"
12
+ device: "default"
13
+ vae_loader:
14
+ class_type: VAELoader
15
+ title: "Load VAE"
16
+
17
+ connections:
18
+ - from: "unet_loader:0"
19
+ to: "ksampler:model"
20
+ - from: "clip_loader:0"
21
+ to: "pos_prompt:clip"
22
+ - from: "clip_loader:0"
23
+ to: "neg_prompt:clip"
24
+ - from: "pos_prompt:0"
25
+ to: "ksampler:positive"
26
+ - from: "neg_prompt:0"
27
+ to: "ksampler:negative"
28
+ - from: "vae_loader:0"
29
+ to: "vae_decode:vae"
30
+ - from: "vae_loader:0"
31
+ to: "vae_encode:vae"
32
+
33
+ dynamic_lora_chains:
34
+ lora_chain:
35
+ template: "LoraLoader"
36
+ output_map:
37
+ "unet_loader:0": "model"
38
+ "clip_loader:0": "clip"
39
+ input_map:
40
+ "model": "model"
41
+ "clip": "clip"
42
+ end_input_map:
43
+ "model": ["ksampler:model"]
44
+ "clip": ["pos_prompt:clip", "neg_prompt:clip"]
45
+
46
+ dynamic_conditioning_chains:
47
+ conditioning_chain:
48
+ ksampler_node: "ksampler"
49
+ clip_source: "clip_loader:0"
50
+
51
+ dynamic_pid_chains:
52
+ pid_chain:
53
+ ksampler_node: "ksampler"
54
+
55
+ ui_map:
56
+ unet_name: "unet_loader:unet_name"
57
+ clip_name: "clip_loader:clip_name"
58
+ vae_name: "vae_loader:vae_name"
requirements.txt CHANGED
@@ -1,4 +1,4 @@
1
- comfyui-frontend-package==1.45.15
2
  comfyui-workflow-templates==0.10.0
3
  comfyui-embedded-docs==0.5.4
4
  torch
 
1
+ comfyui-frontend-package==1.45.19
2
  comfyui-workflow-templates==0.10.0
3
  comfyui-embedded-docs==0.5.4
4
  torch
yaml/constants.yaml CHANGED
@@ -7,6 +7,14 @@ MAX_REFERENCE_LATENTS: 10
7
  LORA_SOURCE_CHOICES: ["Civitai", "File"]
8
 
9
  RESOLUTION_MAP:
 
 
 
 
 
 
 
 
10
  pixeldit:
11
  "1:1 (Square)": [1024, 1024]
12
  "16:9 (Landscape)": [1344, 768]
 
7
  LORA_SOURCE_CHOICES: ["Civitai", "File"]
8
 
9
  RESOLUTION_MAP:
10
+ boogu-image:
11
+ "1:1 (Square)": [1024, 1024]
12
+ "16:9 (Landscape)": [1344, 768]
13
+ "9:16 (Portrait)": [768, 1344]
14
+ "4:3 (Classic)": [1152, 896]
15
+ "3:4 (Classic Portrait)": [896, 1152]
16
+ "3:2 (Photography)": [1216, 832]
17
+ "2:3 (Photography Portrait)": [832, 1216]
18
  pixeldit:
19
  "1:1 (Square)": [1024, 1024]
20
  "16:9 (Landscape)": [1344, 768]
yaml/file_list.yaml CHANGED
@@ -403,6 +403,15 @@ file:
403
  repo_id: "comfyanonymous/ControlNet-v1-1_fp16_safetensors"
404
  repository_file_path: "control_v11u_sd15_tile_fp16.safetensors"
405
  diffusion_models:
 
 
 
 
 
 
 
 
 
406
  # Ideogram-4
407
  - filename: "ideogram4_nvfp4_mixed.safetensors"
408
  source: "hf"
@@ -456,14 +465,14 @@ file:
456
  source: "hf"
457
  repo_id: "circlestone-labs/Anima"
458
  repository_file_path: "split_files/diffusion_models/anima-base-v1.0.safetensors"
459
- - filename: "AnimaYume_tuned_v05.safetensors"
460
  source: "hf"
461
  repo_id: "duongve/AnimaYume"
462
- repository_file_path: "split_files/diffusion_models/AnimaYume_tuned_v05.safetensors"
463
- - filename: "anima_pencil-v2.0.0.safetensors"
464
  source: "hf"
465
  repo_id: "bluepen5805/anima-models"
466
- repository_file_path: "anima_pencil-v2.0.0.safetensors"
467
  # NewBie-Image
468
  - filename: "NewBie-Image-Exp0.1-bf16.safetensors"
469
  source: "hf"
@@ -711,7 +720,7 @@ file:
711
  repo_id: "alibaba-pai/Z-Image-Turbo-Fun-Controlnet-Union-2.1"
712
  repository_file_path: "Z-Image-Turbo-Fun-Controlnet-Tile-2.1-8steps.safetensors"
713
  text_encoders:
714
- # Ideogram-4
715
  - filename: "qwen3vl_8b_nvfp4.safetensors"
716
  source: "hf"
717
  repo_id: "Comfy-Org/Ideogram-4"
 
403
  repo_id: "comfyanonymous/ControlNet-v1-1_fp16_safetensors"
404
  repository_file_path: "control_v11u_sd15_tile_fp16.safetensors"
405
  diffusion_models:
406
+ # Boogu-Image
407
+ - filename: "boogu_image_base_nvfp4.safetensors"
408
+ source: "hf"
409
+ repo_id: "Comfy-Org/Boogu-Image"
410
+ repository_file_path: "diffusion_models/boogu_image_base_nvfp4.safetensors"
411
+ - filename: "boogu_image_turbo_nvfp4.safetensors"
412
+ source: "hf"
413
+ repo_id: "Comfy-Org/Boogu-Image"
414
+ repository_file_path: "diffusion_models/boogu_image_turbo_nvfp4.safetensors"
415
  # Ideogram-4
416
  - filename: "ideogram4_nvfp4_mixed.safetensors"
417
  source: "hf"
 
465
  source: "hf"
466
  repo_id: "circlestone-labs/Anima"
467
  repository_file_path: "split_files/diffusion_models/anima-base-v1.0.safetensors"
468
+ - filename: "AnimaYume_v10_base.safetensors"
469
  source: "hf"
470
  repo_id: "duongve/AnimaYume"
471
+ repository_file_path: "split_files/diffusion_models/AnimaYume_v10_base.safetensors"
472
+ - filename: "anima_pencil-v2.1.0.safetensors"
473
  source: "hf"
474
  repo_id: "bluepen5805/anima-models"
475
+ repository_file_path: "anima_pencil-v2.1.0.safetensors"
476
  # NewBie-Image
477
  - filename: "NewBie-Image-Exp0.1-bf16.safetensors"
478
  source: "hf"
 
720
  repo_id: "alibaba-pai/Z-Image-Turbo-Fun-Controlnet-Union-2.1"
721
  repository_file_path: "Z-Image-Turbo-Fun-Controlnet-Tile-2.1-8steps.safetensors"
722
  text_encoders:
723
+ # Ideogram-4 & Boogu-Image
724
  - filename: "qwen3vl_8b_nvfp4.safetensors"
725
  source: "hf"
726
  repo_id: "Comfy-Org/Ideogram-4"
yaml/image_gen_features.yaml CHANGED
@@ -8,6 +8,12 @@ default:
8
  - conditioning
9
  - vae
10
 
 
 
 
 
 
 
11
  pixeldit:
12
  enabled_chains:
13
  - conditioning
 
8
  - conditioning
9
  - vae
10
 
11
+ boogu-image:
12
+ enabled_chains:
13
+ - lora
14
+ - conditioning
15
+ - pid
16
+
17
  pixeldit:
18
  enabled_chains:
19
  - conditioning
yaml/model_architectures.yaml CHANGED
@@ -1,4 +1,5 @@
1
  architecture_order:
 
2
  - "PixelDiT"
3
  - "Ideogram-4"
4
  - "Lens"
@@ -25,6 +26,9 @@ architecture_order:
25
  - "SD1.5"
26
 
27
  architectures:
 
 
 
28
  "PixelDiT":
29
  model_type: "pixeldit"
30
  controlnet_key: "PixelDiT"
 
1
  architecture_order:
2
+ - "Boogu-Image"
3
  - "PixelDiT"
4
  - "Ideogram-4"
5
  - "Lens"
 
26
  - "SD1.5"
27
 
28
  architectures:
29
+ "Boogu-Image":
30
+ model_type: "boogu-image"
31
+ controlnet_key: "Boogu-Image"
32
  "PixelDiT":
33
  model_type: "pixeldit"
34
  controlnet_key: "PixelDiT"
yaml/model_defaults.yaml CHANGED
@@ -1,10 +1,22 @@
1
  Default:
2
- steps: 20
3
- cfg: 5.0
4
- sampler_name: "er_sde"
5
- scheduler: "simple"
6
  positive_prompt: ""
7
- negative_prompt: "low quality, worst quality, over-saturated, blurry, deformed, watermark"
 
 
 
 
 
 
 
 
 
 
 
 
8
 
9
  PixelDiT:
10
  _defaults:
 
1
  Default:
2
+ steps: 4
3
+ cfg: 1.0
4
+ sampler_name: "lcm"
5
+ scheduler: "sgm_uniform"
6
  positive_prompt: ""
7
+ negative_prompt: ""
8
+
9
+ Boogu-Image:
10
+ _defaults:
11
+ steps: 25
12
+ cfg: 3.5
13
+ sampler_name: "dpmpp_2m"
14
+ scheduler: "simple"
15
+ "Boogu-Image-Turbo":
16
+ steps: 4
17
+ cfg: 1.0
18
+ sampler_name: "lcm"
19
+ scheduler: "sgm_uniform"
20
 
21
  PixelDiT:
22
  _defaults:
yaml/model_list.yaml CHANGED
@@ -1,4 +1,18 @@
1
  Checkpoint:
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  PixelDiT:
3
  latent_type: chroma_radiance_latent
4
  models:
@@ -120,14 +134,14 @@ Checkpoint:
120
  unet: "waiANIMA_v10.safetensors"
121
  vae: "qwen_image_vae.safetensors"
122
  clip: "qwen_3_06b_base.safetensors"
123
- - display_name: "duongve/AnimaYume-v0.5"
124
  components:
125
- unet: "AnimaYume_tuned_v05.safetensors"
126
  vae: "qwen_image_vae.safetensors"
127
  clip: "qwen_3_06b_base.safetensors"
128
- - display_name: "bluepen5805/Anima-pencil-v2.0"
129
  components:
130
- unet: "anima_pencil-v2.0.0.safetensors"
131
  vae: "qwen_image_vae.safetensors"
132
  clip: "qwen_3_06b_base.safetensors"
133
  - display_name: "circlestone-labs/Anima-base-v1.0"
 
1
  Checkpoint:
2
+ Boogu-Image:
3
+ latent_type: latent
4
+ models:
5
+ - display_name: "Boogu-Image-Turbo"
6
+ components:
7
+ unet: "boogu_image_turbo_nvfp4.safetensors"
8
+ clip: "qwen3vl_8b_nvfp4.safetensors"
9
+ vae: "ae.safetensors"
10
+ - display_name: "Boogu-Image-Base"
11
+ components:
12
+ unet: "boogu_image_base_nvfp4.safetensors"
13
+ clip: "qwen3vl_8b_nvfp4.safetensors"
14
+ vae: "ae.safetensors"
15
+
16
  PixelDiT:
17
  latent_type: chroma_radiance_latent
18
  models:
 
134
  unet: "waiANIMA_v10.safetensors"
135
  vae: "qwen_image_vae.safetensors"
136
  clip: "qwen_3_06b_base.safetensors"
137
+ - display_name: "duongve/AnimaYume-v1.0"
138
  components:
139
+ unet: "AnimaYume_v10_base.safetensors"
140
  vae: "qwen_image_vae.safetensors"
141
  clip: "qwen_3_06b_base.safetensors"
142
+ - display_name: "bluepen5805/Anima-pencil-v2.1"
143
  components:
144
+ unet: "anima_pencil-v2.1.0.safetensors"
145
  vae: "qwen_image_vae.safetensors"
146
  clip: "qwen_3_06b_base.safetensors"
147
  - display_name: "circlestone-labs/Anima-base-v1.0"
yaml/pid.yaml CHANGED
@@ -7,7 +7,7 @@ PiD:
7
  architectures: ["anima", "qwen-image"]
8
  - filepath: "pid_flux1_1024_to_4096_4step_mxfp8.safetensors"
9
  latent_format: "flux"
10
- architectures: ["longcat-image", "newbie-image", "z-image", "kandinsky-5", "ovis-image", "omnigen2", "chroma1", "hidream-i1", "flux1"]
11
  - filepath: "pid_sd3_1024_to_4096_4step_bf16.safetensors"
12
  latent_format: "sd3"
13
  architectures: ["sd35"]
 
7
  architectures: ["anima", "qwen-image"]
8
  - filepath: "pid_flux1_1024_to_4096_4step_mxfp8.safetensors"
9
  latent_format: "flux"
10
+ architectures: ["longcat-image", "newbie-image", "z-image", "kandinsky-5", "ovis-image", "omnigen2", "chroma1", "hidream-i1", "flux1", "boogu-image"]
11
  - filepath: "pid_sd3_1024_to_4096_4step_bf16.safetensors"
12
  latent_format: "sd3"
13
  architectures: ["sd35"]