Skip to content

Commit

Permalink
added workflow with HunyuanDiT
Browse files Browse the repository at this point in the history
Signed-off-by: Alexander Piskun <bigcat88@icloud.com>
  • Loading branch information
bigcat88 committed Aug 10, 2024
1 parent ac3b7cc commit f636490
Show file tree
Hide file tree
Showing 7 changed files with 246 additions and 0 deletions.
32 changes: 32 additions & 0 deletions docs/Flows/HunyuanDiT.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
.. _HunyuanDiT:

HunyuanDiT
==========

Powerful Multi-Resolution Diffusion Transformer with Fine-Grained Chinese Understanding.

A solid model that supports natively very high **Vibrancy**.

Hardware
""""""""

- **Required memory: 12 GB**

Time to generate 1 image(30 steps):

- AMD 7900 XTX: **40 sec**

Examples
""""""""

.. image:: /FlowsResults/HunyuanDiT_1.png

Prompt: "*portrait of a majestic insect*" (Vibrancy: 7, Steps: 60)

.. image:: /FlowsResults/HunyuanDiT_2.png

Prompt: "*close portrait of happy girl on the great wall*" (Vibrancy: 7, Steps: 60)

.. image:: /FlowsResults/HunyuanDiT_3.png

Prompt: "*portrait of a black pug on the yellow grass*" (Vibrancy: 6, Steps: 30)
1 change: 1 addition & 0 deletions docs/Flows/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Available Flows
Colorful_XL
Mobius_XL
Stable_Cascade
HunyuanDiT
SD3_Medium
VintagePortrait
Photomaker_1
Expand Down
Binary file added docs/FlowsResults/HunyuanDiT_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/FlowsResults/HunyuanDiT_2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/FlowsResults/HunyuanDiT_3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
201 changes: 201 additions & 0 deletions flows/hunyuan_dit.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,201 @@
{
"2": {
"inputs": {
"ckpt_name": "hunyuan_dit_1.2.safetensors"
},
"class_type": "CheckpointLoaderSimple",
"_meta": {
"title": "Load Checkpoint"
}
},
"116": {
"inputs": {
"samples": [
"298",
0
],
"vae": [
"2",
2
]
},
"class_type": "VAEDecode",
"_meta": {
"title": "VAE Decode"
}
},
"244": {
"inputs": {
"width": 1024,
"height": 1024,
"batch_size": 1
},
"class_type": "EmptyLatentImage",
"_meta": {
"title": "Empty Latent Image"
}
},
"267": {
"inputs": {
"filename_prefix": "base",
"images": [
"116",
0
]
},
"class_type": "SaveImage",
"_meta": {
"title": "Save Image"
}
},
"291": {
"inputs": {
"name": "hunyuan_dit",
"display_name": "HunyuanDiT",
"description": "Model with Chinese Understanding ",
"author": "bigcat88",
"homepage": "https://huggingface.co/Tencent-Hunyuan/HunyuanDiT",
"documentation": "https://visionatrix.github.io/VixFlowsDocs/Flows/HunyuanDiT.html",
"license": "",
"tags": "[\"general\", \"simple\"]",
"version": "1.0.0",
"requires": "[]",
"is_seed_supported": true,
"is_count_supported": true
},
"class_type": "VixUiWorkflowMetadata",
"_meta": {
"title": "VixUI-WorkflowMetadata"
}
},
"292": {
"inputs": {
"text": "",
"display_name": "Prompt",
"optional": false,
"advanced": false,
"order": 1,
"custom_id": "prompt"
},
"class_type": "VixUiPrompt",
"_meta": {
"title": "VixUI-Prompt"
}
},
"293": {
"inputs": {
"text": "",
"display_name": "Negative Prompt",
"optional": true,
"advanced": true,
"order": 15,
"custom_id": "negative_prompt"
},
"class_type": "VixUiPrompt",
"_meta": {
"title": "VixUI-Prompt"
}
},
"294": {
"inputs": {
"text": [
"293",
0
],
"clip": [
"2",
1
]
},
"class_type": "CLIPTextEncode",
"_meta": {
"title": "CLIP Text Encode (Negative Prompt)"
}
},
"295": {
"inputs": {
"text": [
"292",
0
],
"clip": [
"2",
1
]
},
"class_type": "CLIPTextEncode",
"_meta": {
"title": "CLIP Text Encode (Positive Prompt)"
}
},
"298": {
"inputs": {
"seed": 1,
"steps": [
"300",
0
],
"cfg": [
"308",
0
],
"sampler_name": "euler",
"scheduler": "sgm_uniform",
"denoise": 1,
"model": [
"2",
0
],
"positive": [
"295",
0
],
"negative": [
"294",
0
],
"latent_image": [
"244",
0
]
},
"class_type": "KSampler",
"_meta": {
"title": "KSampler"
}
},
"300": {
"inputs": {
"value": 30,
"display_name": "Steps number to generate",
"optional": true,
"advanced": true,
"min": 20,
"max": 60,
"step": 1,
"order": 91,
"custom_id": "steps_count"
},
"class_type": "VixUiRangeInt",
"_meta": {
"title": "VixUI-RangeInt"
}
},
"308": {
"inputs": {
"value": 6,
"display_name": "Vibrancy",
"optional": true,
"advanced": true,
"min": 2,
"max": 15,
"step": 0.1,
"order": 90,
"custom_id": "vibrancy"
},
"class_type": "VixUiRangeFloat",
"_meta": {
"title": "VixUI-RangeFloat"
}
}
}
12 changes: 12 additions & 0 deletions models_catalog.json
Original file line number Diff line number Diff line change
Expand Up @@ -694,5 +694,17 @@
"url": "https://huggingface.co/comfyanonymous/flux_RealismLora_converted_comfyui/resolve/main/flux_realism_lora.safetensors",
"homepage": "https://huggingface.co/XLabs-AI/flux-RealismLora",
"hash": "379e73dccfb57822ee3b12f374e141ce1c79a13b7ff19da4219ef2a2a610038e"
},
"HunyuanDiT": {
"regexes": [
{
"input_value": "^(?=.*(?i:hunyuan_dit_1\\.2))(?=.*(?i:safetensors)).*",
"input_name": "^(?!.*(?i:lora)).*"
}
],
"save_path": "checkpoints/hunyuan_dit_1.2.safetensors",
"url": "https://huggingface.co/comfyanonymous/hunyuan_dit_comfyui/resolve/main/hunyuan_dit_1.2.safetensors",
"homepage": "https://huggingface.co/Tencent-Hunyuan/HunyuanDiT",
"hash": "4fb84f84079cda457d171b3c6b15d1be95b5a3e5d9825703951a99ddf92d1787"
}
}

0 comments on commit f636490

Please sign in to comment.