Upload folder using huggingface_hub
Browse files- README.md +1 -0
- core/pipelines/workflow_recipes/_partials/conditioning/kandinsky-5.yaml +72 -0
- yaml/constants.yaml +8 -0
- yaml/file_list.yaml +7 -2
- yaml/image_gen_features.yaml +6 -0
- yaml/model_architectures.yaml +4 -0
- yaml/model_defaults.yaml +7 -0
- yaml/model_list.yaml +14 -5
- yaml/pid.yaml +1 -1
README.md
CHANGED
|
@@ -74,6 +74,7 @@ models:
|
|
| 74 |
- InstantX/Qwen-Image-ControlNet-Inpainting
|
| 75 |
- InstantX/Qwen-Image-ControlNet-Union
|
| 76 |
- InstantX/SD3.5-Large-IP-Adapter
|
|
|
|
| 77 |
- Kijai/flux-fp8
|
| 78 |
- kohya-ss/Anima-LLLite
|
| 79 |
- Laxhar/noob_openpose
|
|
|
|
| 74 |
- InstantX/Qwen-Image-ControlNet-Inpainting
|
| 75 |
- InstantX/Qwen-Image-ControlNet-Union
|
| 76 |
- InstantX/SD3.5-Large-IP-Adapter
|
| 77 |
+
- kandinskylab/Kandinsky-5.0-T2I-Lite
|
| 78 |
- Kijai/flux-fp8
|
| 79 |
- kohya-ss/Anima-LLLite
|
| 80 |
- Laxhar/noob_openpose
|
core/pipelines/workflow_recipes/_partials/conditioning/kandinsky-5.yaml
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
nodes:
|
| 2 |
+
unet_loader:
|
| 3 |
+
class_type: UNETLoader
|
| 4 |
+
title: "Load Diffusion Model"
|
| 5 |
+
params:
|
| 6 |
+
weight_dtype: "default"
|
| 7 |
+
vae_loader:
|
| 8 |
+
class_type: VAELoader
|
| 9 |
+
title: "Load VAE"
|
| 10 |
+
clip_loader:
|
| 11 |
+
class_type: DualCLIPLoader
|
| 12 |
+
title: "DualCLIPLoader"
|
| 13 |
+
params:
|
| 14 |
+
type: "kandinsky5_image"
|
| 15 |
+
device: "default"
|
| 16 |
+
model_sampler:
|
| 17 |
+
class_type: ModelSamplingSD3
|
| 18 |
+
title: "ModelSamplingSD3"
|
| 19 |
+
params:
|
| 20 |
+
shift: 3.0
|
| 21 |
+
|
| 22 |
+
connections:
|
| 23 |
+
- from: "unet_loader:0"
|
| 24 |
+
to: "model_sampler:model"
|
| 25 |
+
- from: "model_sampler:0"
|
| 26 |
+
to: "ksampler:model"
|
| 27 |
+
- from: "clip_loader:0"
|
| 28 |
+
to: "pos_prompt:clip"
|
| 29 |
+
- from: "clip_loader:0"
|
| 30 |
+
to: "neg_prompt:clip"
|
| 31 |
+
- from: "vae_loader:0"
|
| 32 |
+
to: "vae_decode:vae"
|
| 33 |
+
- from: "vae_loader:0"
|
| 34 |
+
to: "vae_encode:vae"
|
| 35 |
+
- from: "pos_prompt:0"
|
| 36 |
+
to: "ksampler:positive"
|
| 37 |
+
- from: "neg_prompt:0"
|
| 38 |
+
to: "ksampler:negative"
|
| 39 |
+
|
| 40 |
+
dynamic_lora_chains:
|
| 41 |
+
lora_chain:
|
| 42 |
+
template: "LoraLoader"
|
| 43 |
+
output_map:
|
| 44 |
+
"unet_loader:0": "model"
|
| 45 |
+
"clip_loader:0": "clip"
|
| 46 |
+
input_map:
|
| 47 |
+
"model": "model"
|
| 48 |
+
"clip": "clip"
|
| 49 |
+
end_input_map:
|
| 50 |
+
"model": ["model_sampler:model"]
|
| 51 |
+
"clip": ["pos_prompt:clip", "neg_prompt:clip"]
|
| 52 |
+
|
| 53 |
+
dynamic_controlnet_chains:
|
| 54 |
+
controlnet_chain:
|
| 55 |
+
template: "ControlNetApplyAdvanced"
|
| 56 |
+
ksampler_node: "ksampler"
|
| 57 |
+
vae_source: "vae_loader:0"
|
| 58 |
+
|
| 59 |
+
dynamic_conditioning_chains:
|
| 60 |
+
conditioning_chain:
|
| 61 |
+
ksampler_node: "ksampler"
|
| 62 |
+
clip_source: "clip_loader:0"
|
| 63 |
+
|
| 64 |
+
dynamic_pid_chains:
|
| 65 |
+
pid_chain:
|
| 66 |
+
ksampler_node: "ksampler"
|
| 67 |
+
|
| 68 |
+
ui_map:
|
| 69 |
+
unet_name: "unet_loader:unet_name"
|
| 70 |
+
vae_name: "vae_loader:vae_name"
|
| 71 |
+
clip1_name: "clip_loader:clip_name1"
|
| 72 |
+
clip2_name: "clip_loader:clip_name2"
|
yaml/constants.yaml
CHANGED
|
@@ -87,6 +87,14 @@ RESOLUTION_MAP:
|
|
| 87 |
"3:4 (Classic Portrait)": [896, 1152]
|
| 88 |
"3:2 (Photography)": [1216, 832]
|
| 89 |
"2:3 (Photography Portrait)": [832, 1216]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 90 |
omnigen2:
|
| 91 |
"1:1 (Square)": [1024, 1024]
|
| 92 |
"16:9 (Landscape)": [1344, 768]
|
|
|
|
| 87 |
"3:4 (Classic Portrait)": [896, 1152]
|
| 88 |
"3:2 (Photography)": [1216, 832]
|
| 89 |
"2:3 (Photography Portrait)": [832, 1216]
|
| 90 |
+
kandinsky-5:
|
| 91 |
+
"1:1 (Square)": [1024, 1024]
|
| 92 |
+
"16:9 (Landscape)": [1344, 768]
|
| 93 |
+
"9:16 (Portrait)": [768, 1344]
|
| 94 |
+
"4:3 (Classic)": [1152, 896]
|
| 95 |
+
"3:4 (Classic Portrait)": [896, 1152]
|
| 96 |
+
"3:2 (Photography)": [1216, 832]
|
| 97 |
+
"2:3 (Photography Portrait)": [832, 1216]
|
| 98 |
omnigen2:
|
| 99 |
"1:1 (Square)": [1024, 1024]
|
| 100 |
"16:9 (Landscape)": [1344, 768]
|
yaml/file_list.yaml
CHANGED
|
@@ -536,6 +536,11 @@ file:
|
|
| 536 |
source: "hf"
|
| 537 |
repo_id: "Comfy-Org/Qwen-Image_ComfyUI"
|
| 538 |
repository_file_path: "split_files/diffusion_models/qwen_image_fp8_e4m3fn.safetensors"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 539 |
# Flux.1
|
| 540 |
- filename: "flux1-dev-fp8-e4m3fn.safetensors"
|
| 541 |
source: "hf"
|
|
@@ -796,10 +801,10 @@ file:
|
|
| 796 |
source: "hf"
|
| 797 |
repo_id: "Comfy-Org/HiDream-I1_ComfyUI"
|
| 798 |
repository_file_path: "split_files/text_encoders/llama_3.1_8b_instruct_fp8_scaled.safetensors"
|
| 799 |
-
- filename: "qwen_2.
|
| 800 |
source: "hf"
|
| 801 |
repo_id: "Comfy-Org/Qwen-Image_ComfyUI"
|
| 802 |
-
repository_file_path: "split_files/text_encoders/qwen_2.
|
| 803 |
- filename: "byt5_small_glyphxl_fp16.safetensors"
|
| 804 |
source: "hf"
|
| 805 |
repo_id: "Comfy-Org/HunyuanImage_2.1_ComfyUI"
|
|
|
|
| 536 |
source: "hf"
|
| 537 |
repo_id: "Comfy-Org/Qwen-Image_ComfyUI"
|
| 538 |
repository_file_path: "split_files/diffusion_models/qwen_image_fp8_e4m3fn.safetensors"
|
| 539 |
+
# Kandinsky-5
|
| 540 |
+
- filename: "kandinsky5lite_t2i.safetensors"
|
| 541 |
+
source: "hf"
|
| 542 |
+
repo_id: "kandinskylab/Kandinsky-5.0-T2I-Lite"
|
| 543 |
+
repository_file_path: "model/kandinsky5lite_t2i.safetensors"
|
| 544 |
# Flux.1
|
| 545 |
- filename: "flux1-dev-fp8-e4m3fn.safetensors"
|
| 546 |
source: "hf"
|
|
|
|
| 801 |
source: "hf"
|
| 802 |
repo_id: "Comfy-Org/HiDream-I1_ComfyUI"
|
| 803 |
repository_file_path: "split_files/text_encoders/llama_3.1_8b_instruct_fp8_scaled.safetensors"
|
| 804 |
+
- filename: "qwen_2.5_vl_7b_nvfp4.safetensors"
|
| 805 |
source: "hf"
|
| 806 |
repo_id: "Comfy-Org/Qwen-Image_ComfyUI"
|
| 807 |
+
repository_file_path: "split_files/text_encoders/qwen_2.5_vl_7b_nvfp4.safetensors"
|
| 808 |
- filename: "byt5_small_glyphxl_fp16.safetensors"
|
| 809 |
source: "hf"
|
| 810 |
repo_id: "Comfy-Org/HunyuanImage_2.1_ComfyUI"
|
yaml/image_gen_features.yaml
CHANGED
|
@@ -141,6 +141,12 @@ ovis-image:
|
|
| 141 |
- vae
|
| 142 |
- pid
|
| 143 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 144 |
chroma1:
|
| 145 |
enabled_chains:
|
| 146 |
- conditioning
|
|
|
|
| 141 |
- vae
|
| 142 |
- pid
|
| 143 |
|
| 144 |
+
kandinsky-5:
|
| 145 |
+
enabled_chains:
|
| 146 |
+
- conditioning
|
| 147 |
+
- vae
|
| 148 |
+
- pid
|
| 149 |
+
|
| 150 |
chroma1:
|
| 151 |
enabled_chains:
|
| 152 |
- conditioning
|
yaml/model_architectures.yaml
CHANGED
|
@@ -10,6 +10,7 @@ architecture_order:
|
|
| 10 |
- "LongCat-Image"
|
| 11 |
- "Anima"
|
| 12 |
- "NewBie-Image"
|
|
|
|
| 13 |
- "Ovis-Image"
|
| 14 |
- "HunyuanImage"
|
| 15 |
- "Chroma1-Radiance"
|
|
@@ -66,6 +67,9 @@ architectures:
|
|
| 66 |
"Lumina":
|
| 67 |
model_type: "lumina"
|
| 68 |
controlnet_key: "Lumina"
|
|
|
|
|
|
|
|
|
|
| 69 |
"Ovis-Image":
|
| 70 |
model_type: "ovis-image"
|
| 71 |
controlnet_key: "Ovis-Image"
|
|
|
|
| 10 |
- "LongCat-Image"
|
| 11 |
- "Anima"
|
| 12 |
- "NewBie-Image"
|
| 13 |
+
- "Kandinsky-5"
|
| 14 |
- "Ovis-Image"
|
| 15 |
- "HunyuanImage"
|
| 16 |
- "Chroma1-Radiance"
|
|
|
|
| 67 |
"Lumina":
|
| 68 |
model_type: "lumina"
|
| 69 |
controlnet_key: "Lumina"
|
| 70 |
+
"Kandinsky-5":
|
| 71 |
+
model_type: "kandinsky-5"
|
| 72 |
+
controlnet_key: "Kandinsky-5"
|
| 73 |
"Ovis-Image":
|
| 74 |
model_type: "ovis-image"
|
| 75 |
controlnet_key: "Ovis-Image"
|
yaml/model_defaults.yaml
CHANGED
|
@@ -105,6 +105,13 @@ NewBie-Image:
|
|
| 105 |
positive_prompt: "You are an assistant designed to generate high-quality anime images with the highest degree of image-text alignment based on xml format textual prompts. <Prompt Start>"
|
| 106 |
negative_prompt: "You are an assistant designed to generate low-quality images based on textual prompts. <Prompt Start>"
|
| 107 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 108 |
Ovis-Image:
|
| 109 |
_defaults:
|
| 110 |
steps: 20
|
|
|
|
| 105 |
positive_prompt: "You are an assistant designed to generate high-quality anime images with the highest degree of image-text alignment based on xml format textual prompts. <Prompt Start>"
|
| 106 |
negative_prompt: "You are an assistant designed to generate low-quality images based on textual prompts. <Prompt Start>"
|
| 107 |
|
| 108 |
+
Kandinsky-5:
|
| 109 |
+
_defaults:
|
| 110 |
+
steps: 50
|
| 111 |
+
cfg: 3.5
|
| 112 |
+
sampler_name: "euler"
|
| 113 |
+
scheduler: "simple"
|
| 114 |
+
|
| 115 |
Ovis-Image:
|
| 116 |
_defaults:
|
| 117 |
steps: 20
|
yaml/model_list.yaml
CHANGED
|
@@ -98,13 +98,13 @@ Checkpoint:
|
|
| 98 |
components:
|
| 99 |
unet: "qwen_image_2512_fp8_e4m3fn.safetensors"
|
| 100 |
vae: "qwen_image_vae.safetensors"
|
| 101 |
-
clip: "qwen_2.
|
| 102 |
lora: "Qwen-Image-2512-Lightning-4steps-V1.0-bf16.safetensors"
|
| 103 |
- display_name: "Qwen/Qwen-Image + Lightning-4steps-V1.0 LoRA"
|
| 104 |
components:
|
| 105 |
unet: "qwen_image_fp8_e4m3fn.safetensors"
|
| 106 |
vae: "qwen_image_vae.safetensors"
|
| 107 |
-
clip: "qwen_2.
|
| 108 |
lora: "Qwen-Image-fp8-e4m3fn-Lightning-4steps-V1.0-bf16.safetensors"
|
| 109 |
LongCat-Image:
|
| 110 |
latent_type: sd3_latent
|
|
@@ -113,7 +113,7 @@ Checkpoint:
|
|
| 113 |
components:
|
| 114 |
unet: "longcat_image_bf16.safetensors"
|
| 115 |
vae: "ae.safetensors"
|
| 116 |
-
clip: "qwen_2.
|
| 117 |
Anima:
|
| 118 |
latent_type: latent
|
| 119 |
models:
|
|
@@ -146,6 +146,15 @@ Checkpoint:
|
|
| 146 |
vae: "ae.safetensors"
|
| 147 |
clip1: "gemma_3_4b_it_bf16.safetensors"
|
| 148 |
clip2: "jina_clip_v2_bf16.safetensors"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 149 |
Ovis-Image:
|
| 150 |
latent_type: sd3_latent
|
| 151 |
models:
|
|
@@ -161,13 +170,13 @@ Checkpoint:
|
|
| 161 |
components:
|
| 162 |
unet: "hunyuanimage2.1_fp8_e4m3fn.safetensors"
|
| 163 |
vae: "hunyuan_image_2.1_vae_fp16.safetensors"
|
| 164 |
-
clip1: "qwen_2.
|
| 165 |
clip2: "byt5_small_glyphxl_fp16.safetensors"
|
| 166 |
- display_name: "HunyuanImage-2.1-Distilled"
|
| 167 |
components:
|
| 168 |
unet: "hunyuanimage2.1_distilled_fp8_e4m3fn.safetensors"
|
| 169 |
vae: "hunyuan_image_2.1_vae_fp16.safetensors"
|
| 170 |
-
clip1: "qwen_2.
|
| 171 |
clip2: "byt5_small_glyphxl_fp16.safetensors"
|
| 172 |
Chroma1-Radiance:
|
| 173 |
latent_type: chroma_radiance_latent
|
|
|
|
| 98 |
components:
|
| 99 |
unet: "qwen_image_2512_fp8_e4m3fn.safetensors"
|
| 100 |
vae: "qwen_image_vae.safetensors"
|
| 101 |
+
clip: "qwen_2.5_vl_7b_nvfp4.safetensors"
|
| 102 |
lora: "Qwen-Image-2512-Lightning-4steps-V1.0-bf16.safetensors"
|
| 103 |
- display_name: "Qwen/Qwen-Image + Lightning-4steps-V1.0 LoRA"
|
| 104 |
components:
|
| 105 |
unet: "qwen_image_fp8_e4m3fn.safetensors"
|
| 106 |
vae: "qwen_image_vae.safetensors"
|
| 107 |
+
clip: "qwen_2.5_vl_7b_nvfp4.safetensors"
|
| 108 |
lora: "Qwen-Image-fp8-e4m3fn-Lightning-4steps-V1.0-bf16.safetensors"
|
| 109 |
LongCat-Image:
|
| 110 |
latent_type: sd3_latent
|
|
|
|
| 113 |
components:
|
| 114 |
unet: "longcat_image_bf16.safetensors"
|
| 115 |
vae: "ae.safetensors"
|
| 116 |
+
clip: "qwen_2.5_vl_7b_nvfp4.safetensors"
|
| 117 |
Anima:
|
| 118 |
latent_type: latent
|
| 119 |
models:
|
|
|
|
| 146 |
vae: "ae.safetensors"
|
| 147 |
clip1: "gemma_3_4b_it_bf16.safetensors"
|
| 148 |
clip2: "jina_clip_v2_bf16.safetensors"
|
| 149 |
+
Kandinsky-5:
|
| 150 |
+
latent_type: latent
|
| 151 |
+
models:
|
| 152 |
+
- display_name: "Kandinsky-5.0-T2I-Lite"
|
| 153 |
+
components:
|
| 154 |
+
unet: "kandinsky5lite_t2i.safetensors"
|
| 155 |
+
vae: "ae.safetensors"
|
| 156 |
+
clip1: "qwen_2.5_vl_7b_nvfp4.safetensors"
|
| 157 |
+
clip2: "clip_l.safetensors"
|
| 158 |
Ovis-Image:
|
| 159 |
latent_type: sd3_latent
|
| 160 |
models:
|
|
|
|
| 170 |
components:
|
| 171 |
unet: "hunyuanimage2.1_fp8_e4m3fn.safetensors"
|
| 172 |
vae: "hunyuan_image_2.1_vae_fp16.safetensors"
|
| 173 |
+
clip1: "qwen_2.5_vl_7b_nvfp4.safetensors"
|
| 174 |
clip2: "byt5_small_glyphxl_fp16.safetensors"
|
| 175 |
- display_name: "HunyuanImage-2.1-Distilled"
|
| 176 |
components:
|
| 177 |
unet: "hunyuanimage2.1_distilled_fp8_e4m3fn.safetensors"
|
| 178 |
vae: "hunyuan_image_2.1_vae_fp16.safetensors"
|
| 179 |
+
clip1: "qwen_2.5_vl_7b_nvfp4.safetensors"
|
| 180 |
clip2: "byt5_small_glyphxl_fp16.safetensors"
|
| 181 |
Chroma1-Radiance:
|
| 182 |
latent_type: chroma_radiance_latent
|
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", "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"]
|
| 11 |
- filepath: "pid_sd3_1024_to_4096_4step_bf16.safetensors"
|
| 12 |
latent_format: "sd3"
|
| 13 |
architectures: ["sd35"]
|