├── .ci ├── nightly │ ├── update_windows │ │ └── update_comfyui_and_python_dependencies.bat │ └── windows_base_files │ │ └── run_nvidia_gpu.bat ├── update_windows │ ├── update.py │ ├── update_comfyui.bat │ └── update_comfyui_and_python_dependencies.bat ├── update_windows_cu118 │ └── update_comfyui_and_python_dependencies.bat └── windows_base_files │ ├── README_VERY_IMPORTANT.txt │ ├── run_cpu.bat │ └── run_nvidia_gpu.bat ├── .github └── workflows │ ├── windows_release_cu118_dependencies.yml │ ├── windows_release_cu118_dependencies_2.yml │ ├── windows_release_cu118_package.yml │ └── windows_release_nightly_pytorch.yml ├── .gitignore ├── LICENSE ├── README.md ├── Zho汉化_默认工作流.json ├── comfy ├── checkpoint_pickle.py ├── cldm │ └── cldm.py ├── cli_args.py ├── clip_config_bigg.json ├── clip_vision.py ├── clip_vision_config_h.json ├── clip_vision_config_vitl.json ├── diffusers_convert.py ├── diffusers_load.py ├── extra_samplers │ └── uni_pc.py ├── gligen.py ├── k_diffusion │ ├── external.py │ ├── sampling.py │ └── utils.py ├── latent_formats.py ├── ldm │ ├── models │ │ ├── autoencoder.py │ │ └── diffusion │ │ │ ├── __init__.py │ │ │ ├── ddim.py │ │ │ ├── dpm_solver │ │ │ ├── __init__.py │ │ │ ├── dpm_solver.py │ │ │ └── sampler.py │ │ │ ├── plms.py │ │ │ └── sampling_util.py │ ├── modules │ │ ├── attention.py │ │ ├── diffusionmodules │ │ │ ├── __init__.py │ │ │ ├── model.py │ │ │ ├── openaimodel.py │ │ │ ├── upscaling.py │ │ │ └── util.py │ │ ├── distributions │ │ │ ├── __init__.py │ │ │ └── distributions.py │ │ ├── ema.py │ │ ├── encoders │ │ │ ├── __init__.py │ │ │ └── noise_aug_modules.py │ │ └── sub_quadratic_attention.py │ └── util.py ├── model_base.py ├── model_detection.py ├── model_management.py ├── ops.py ├── sample.py ├── samplers.py ├── sd.py ├── sd1_clip.py ├── sd1_clip_config.json ├── sd1_tokenizer │ ├── merges.txt │ ├── special_tokens_map.json │ ├── tokenizer_config.json │ └── vocab.json ├── sd2_clip.py ├── sd2_clip_config.json ├── sdxl_clip.py ├── supported_models.py ├── supported_models_base.py ├── t2i_adapter │ └── adapter.py ├── taesd │ └── taesd.py └── utils.py ├── comfy_extras ├── chainner_models │ ├── __init__.py │ ├── architecture │ │ ├── HAT.py │ │ ├── LICENSE-ESRGAN │ │ ├── LICENSE-HAT │ │ ├── LICENSE-RealESRGAN │ │ ├── LICENSE-SPSR │ │ ├── LICENSE-SwiftSRGAN │ │ ├── LICENSE-Swin2SR │ │ ├── LICENSE-SwinIR │ │ ├── LICENSE-lama │ │ ├── LICENSE-mat │ │ ├── LaMa.py │ │ ├── MAT.py │ │ ├── OmniSR │ │ │ ├── ChannelAttention.py │ │ │ ├── LICENSE │ │ │ ├── OSA.py │ │ │ ├── OSAG.py │ │ │ ├── OmniSR.py │ │ │ ├── esa.py │ │ │ ├── layernorm.py │ │ │ └── pixelshuffle.py │ │ ├── RRDB.py │ │ ├── SPSR.py │ │ ├── SRVGG.py │ │ ├── SwiftSRGAN.py │ │ ├── Swin2SR.py │ │ ├── SwinIR.py │ │ ├── __init__.py │ │ ├── block.py │ │ ├── face │ │ │ ├── LICENSE-GFPGAN │ │ │ ├── LICENSE-RestoreFormer │ │ │ ├── LICENSE-codeformer │ │ │ ├── arcface_arch.py │ │ │ ├── codeformer.py │ │ │ ├── fused_act.py │ │ │ ├── gfpgan_bilinear_arch.py │ │ │ ├── gfpganv1_arch.py │ │ │ ├── gfpganv1_clean_arch.py │ │ │ ├── restoreformer_arch.py │ │ │ ├── stylegan2_arch.py │ │ │ ├── stylegan2_bilinear_arch.py │ │ │ ├── stylegan2_clean_arch.py │ │ │ └── upfirdn2d.py │ │ ├── mat │ │ │ └── utils.py │ │ └── timm │ │ │ ├── LICENSE │ │ │ ├── drop.py │ │ │ ├── helpers.py │ │ │ └── weight_init.py │ ├── model_loading.py │ └── types.py ├── nodes_canny.py ├── nodes_clip_sdxl.py ├── nodes_hypernetwork.py ├── nodes_mask.py ├── nodes_model_merging.py ├── nodes_post_processing.py ├── nodes_rebatch.py ├── nodes_tomesd.py └── nodes_upscale_model.py ├── comfyui_screenshot.png ├── cuda_malloc.py ├── custom_nodes ├── Zho_Main_Nodes_Chinese.py └── example_node.py.example ├── execution.py ├── extra_model_paths.yaml.example ├── folder_paths.py ├── input └── example.png ├── latent_preview.py ├── main.py ├── models ├── checkpoints │ └── put_checkpoints_here ├── clip │ └── put_clip_or_text_encoder_models_here ├── clip_vision │ └── put_clip_vision_models_here ├── configs │ ├── anything_v3.yaml │ ├── v1-inference.yaml │ ├── v1-inference_clip_skip_2.yaml │ ├── v1-inference_clip_skip_2_fp16.yaml │ ├── v1-inference_fp16.yaml │ ├── v1-inpainting-inference.yaml │ ├── v2-inference-v.yaml │ ├── v2-inference-v_fp32.yaml │ ├── v2-inference.yaml │ ├── v2-inference_fp32.yaml │ └── v2-inpainting-inference.yaml ├── controlnet │ └── put_controlnets_and_t2i_here ├── diffusers │ └── put_diffusers_models_here ├── embeddings │ └── put_embeddings_or_textual_inversion_concepts_here ├── gligen │ └── put_gligen_models_here ├── hypernetworks │ └── put_hypernetworks_here ├── loras │ └── put_loras_here ├── style_models │ └── put_t2i_style_model_here ├── unet │ └── put_unet_files_here ├── upscale_models │ └── put_esrgan_and_other_upscale_models_here ├── vae │ └── put_vae_here └── vae_approx │ └── put_taesd_encoder_pth_and_taesd_decoder_pth_here ├── nodes.py ├── nodes_Zh.py ├── notebooks └── comfyui_colab.ipynb ├── output └── _output_images_will_be_put_here ├── requirements.txt ├── script_examples ├── basic_api_example.py └── websockets_api_example.py ├── server.py └── web ├── extensions ├── core │ ├── clipspace.js │ ├── colorPalette.js │ ├── contextMenuFilter.js │ ├── dynamicPrompts.js │ ├── editAttention.js │ ├── invertMenuScrolling.js │ ├── keybinds.js │ ├── maskeditor.js │ ├── nodeTemplates.js │ ├── noteNode.js │ ├── rerouteNode.js │ ├── saveImageExtraOutput.js │ ├── slotDefaults.js │ ├── snapToGrid.js │ ├── uploadImage.js │ └── widgetInputs.js └── logging.js.example ├── index.html ├── jsconfig.json ├── lib ├── litegraph.core.js ├── litegraph.css └── litegraph.extensions.js ├── scripts ├── api.js ├── app.js ├── defaultGraph.js ├── pnginfo.js ├── ui.js └── widgets.js ├── style.css └── types ├── comfy.d.ts └── litegraph.d.ts /.ci/nightly/update_windows/update_comfyui_and_python_dependencies.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/.ci/nightly/update_windows/update_comfyui_and_python_dependencies.bat -------------------------------------------------------------------------------- /.ci/nightly/windows_base_files/run_nvidia_gpu.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/.ci/nightly/windows_base_files/run_nvidia_gpu.bat -------------------------------------------------------------------------------- /.ci/update_windows/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/.ci/update_windows/update.py -------------------------------------------------------------------------------- /.ci/update_windows/update_comfyui.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/.ci/update_windows/update_comfyui.bat -------------------------------------------------------------------------------- /.ci/update_windows/update_comfyui_and_python_dependencies.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/.ci/update_windows/update_comfyui_and_python_dependencies.bat -------------------------------------------------------------------------------- /.ci/update_windows_cu118/update_comfyui_and_python_dependencies.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/.ci/update_windows_cu118/update_comfyui_and_python_dependencies.bat -------------------------------------------------------------------------------- /.ci/windows_base_files/README_VERY_IMPORTANT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/.ci/windows_base_files/README_VERY_IMPORTANT.txt -------------------------------------------------------------------------------- /.ci/windows_base_files/run_cpu.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/.ci/windows_base_files/run_cpu.bat -------------------------------------------------------------------------------- /.ci/windows_base_files/run_nvidia_gpu.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/.ci/windows_base_files/run_nvidia_gpu.bat -------------------------------------------------------------------------------- /.github/workflows/windows_release_cu118_dependencies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/.github/workflows/windows_release_cu118_dependencies.yml -------------------------------------------------------------------------------- /.github/workflows/windows_release_cu118_dependencies_2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/.github/workflows/windows_release_cu118_dependencies_2.yml -------------------------------------------------------------------------------- /.github/workflows/windows_release_cu118_package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/.github/workflows/windows_release_cu118_package.yml -------------------------------------------------------------------------------- /.github/workflows/windows_release_nightly_pytorch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/.github/workflows/windows_release_nightly_pytorch.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/README.md -------------------------------------------------------------------------------- /Zho汉化_默认工作流.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/Zho汉化_默认工作流.json -------------------------------------------------------------------------------- /comfy/checkpoint_pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy/checkpoint_pickle.py -------------------------------------------------------------------------------- /comfy/cldm/cldm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy/cldm/cldm.py -------------------------------------------------------------------------------- /comfy/cli_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy/cli_args.py -------------------------------------------------------------------------------- /comfy/clip_config_bigg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy/clip_config_bigg.json -------------------------------------------------------------------------------- /comfy/clip_vision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy/clip_vision.py -------------------------------------------------------------------------------- /comfy/clip_vision_config_h.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy/clip_vision_config_h.json -------------------------------------------------------------------------------- /comfy/clip_vision_config_vitl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy/clip_vision_config_vitl.json -------------------------------------------------------------------------------- /comfy/diffusers_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy/diffusers_convert.py -------------------------------------------------------------------------------- /comfy/diffusers_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy/diffusers_load.py -------------------------------------------------------------------------------- /comfy/extra_samplers/uni_pc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy/extra_samplers/uni_pc.py -------------------------------------------------------------------------------- /comfy/gligen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy/gligen.py -------------------------------------------------------------------------------- /comfy/k_diffusion/external.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy/k_diffusion/external.py -------------------------------------------------------------------------------- /comfy/k_diffusion/sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy/k_diffusion/sampling.py -------------------------------------------------------------------------------- /comfy/k_diffusion/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy/k_diffusion/utils.py -------------------------------------------------------------------------------- /comfy/latent_formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy/latent_formats.py -------------------------------------------------------------------------------- /comfy/ldm/models/autoencoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy/ldm/models/autoencoder.py -------------------------------------------------------------------------------- /comfy/ldm/models/diffusion/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /comfy/ldm/models/diffusion/ddim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy/ldm/models/diffusion/ddim.py -------------------------------------------------------------------------------- /comfy/ldm/models/diffusion/dpm_solver/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy/ldm/models/diffusion/dpm_solver/__init__.py -------------------------------------------------------------------------------- /comfy/ldm/models/diffusion/dpm_solver/dpm_solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy/ldm/models/diffusion/dpm_solver/dpm_solver.py -------------------------------------------------------------------------------- /comfy/ldm/models/diffusion/dpm_solver/sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy/ldm/models/diffusion/dpm_solver/sampler.py -------------------------------------------------------------------------------- /comfy/ldm/models/diffusion/plms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy/ldm/models/diffusion/plms.py -------------------------------------------------------------------------------- /comfy/ldm/models/diffusion/sampling_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy/ldm/models/diffusion/sampling_util.py -------------------------------------------------------------------------------- /comfy/ldm/modules/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy/ldm/modules/attention.py -------------------------------------------------------------------------------- /comfy/ldm/modules/diffusionmodules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /comfy/ldm/modules/diffusionmodules/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy/ldm/modules/diffusionmodules/model.py -------------------------------------------------------------------------------- /comfy/ldm/modules/diffusionmodules/openaimodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy/ldm/modules/diffusionmodules/openaimodel.py -------------------------------------------------------------------------------- /comfy/ldm/modules/diffusionmodules/upscaling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy/ldm/modules/diffusionmodules/upscaling.py -------------------------------------------------------------------------------- /comfy/ldm/modules/diffusionmodules/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy/ldm/modules/diffusionmodules/util.py -------------------------------------------------------------------------------- /comfy/ldm/modules/distributions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /comfy/ldm/modules/distributions/distributions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy/ldm/modules/distributions/distributions.py -------------------------------------------------------------------------------- /comfy/ldm/modules/ema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy/ldm/modules/ema.py -------------------------------------------------------------------------------- /comfy/ldm/modules/encoders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /comfy/ldm/modules/encoders/noise_aug_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy/ldm/modules/encoders/noise_aug_modules.py -------------------------------------------------------------------------------- /comfy/ldm/modules/sub_quadratic_attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy/ldm/modules/sub_quadratic_attention.py -------------------------------------------------------------------------------- /comfy/ldm/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy/ldm/util.py -------------------------------------------------------------------------------- /comfy/model_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy/model_base.py -------------------------------------------------------------------------------- /comfy/model_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy/model_detection.py -------------------------------------------------------------------------------- /comfy/model_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy/model_management.py -------------------------------------------------------------------------------- /comfy/ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy/ops.py -------------------------------------------------------------------------------- /comfy/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy/sample.py -------------------------------------------------------------------------------- /comfy/samplers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy/samplers.py -------------------------------------------------------------------------------- /comfy/sd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy/sd.py -------------------------------------------------------------------------------- /comfy/sd1_clip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy/sd1_clip.py -------------------------------------------------------------------------------- /comfy/sd1_clip_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy/sd1_clip_config.json -------------------------------------------------------------------------------- /comfy/sd1_tokenizer/merges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy/sd1_tokenizer/merges.txt -------------------------------------------------------------------------------- /comfy/sd1_tokenizer/special_tokens_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy/sd1_tokenizer/special_tokens_map.json -------------------------------------------------------------------------------- /comfy/sd1_tokenizer/tokenizer_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy/sd1_tokenizer/tokenizer_config.json -------------------------------------------------------------------------------- /comfy/sd1_tokenizer/vocab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy/sd1_tokenizer/vocab.json -------------------------------------------------------------------------------- /comfy/sd2_clip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy/sd2_clip.py -------------------------------------------------------------------------------- /comfy/sd2_clip_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy/sd2_clip_config.json -------------------------------------------------------------------------------- /comfy/sdxl_clip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy/sdxl_clip.py -------------------------------------------------------------------------------- /comfy/supported_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy/supported_models.py -------------------------------------------------------------------------------- /comfy/supported_models_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy/supported_models_base.py -------------------------------------------------------------------------------- /comfy/t2i_adapter/adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy/t2i_adapter/adapter.py -------------------------------------------------------------------------------- /comfy/taesd/taesd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy/taesd/taesd.py -------------------------------------------------------------------------------- /comfy/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy/utils.py -------------------------------------------------------------------------------- /comfy_extras/chainner_models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /comfy_extras/chainner_models/architecture/HAT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/chainner_models/architecture/HAT.py -------------------------------------------------------------------------------- /comfy_extras/chainner_models/architecture/LICENSE-ESRGAN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/chainner_models/architecture/LICENSE-ESRGAN -------------------------------------------------------------------------------- /comfy_extras/chainner_models/architecture/LICENSE-HAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/chainner_models/architecture/LICENSE-HAT -------------------------------------------------------------------------------- /comfy_extras/chainner_models/architecture/LICENSE-RealESRGAN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/chainner_models/architecture/LICENSE-RealESRGAN -------------------------------------------------------------------------------- /comfy_extras/chainner_models/architecture/LICENSE-SPSR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/chainner_models/architecture/LICENSE-SPSR -------------------------------------------------------------------------------- /comfy_extras/chainner_models/architecture/LICENSE-SwiftSRGAN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/chainner_models/architecture/LICENSE-SwiftSRGAN -------------------------------------------------------------------------------- /comfy_extras/chainner_models/architecture/LICENSE-Swin2SR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/chainner_models/architecture/LICENSE-Swin2SR -------------------------------------------------------------------------------- /comfy_extras/chainner_models/architecture/LICENSE-SwinIR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/chainner_models/architecture/LICENSE-SwinIR -------------------------------------------------------------------------------- /comfy_extras/chainner_models/architecture/LICENSE-lama: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/chainner_models/architecture/LICENSE-lama -------------------------------------------------------------------------------- /comfy_extras/chainner_models/architecture/LICENSE-mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/chainner_models/architecture/LICENSE-mat -------------------------------------------------------------------------------- /comfy_extras/chainner_models/architecture/LaMa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/chainner_models/architecture/LaMa.py -------------------------------------------------------------------------------- /comfy_extras/chainner_models/architecture/MAT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/chainner_models/architecture/MAT.py -------------------------------------------------------------------------------- /comfy_extras/chainner_models/architecture/OmniSR/ChannelAttention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/chainner_models/architecture/OmniSR/ChannelAttention.py -------------------------------------------------------------------------------- /comfy_extras/chainner_models/architecture/OmniSR/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/chainner_models/architecture/OmniSR/LICENSE -------------------------------------------------------------------------------- /comfy_extras/chainner_models/architecture/OmniSR/OSA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/chainner_models/architecture/OmniSR/OSA.py -------------------------------------------------------------------------------- /comfy_extras/chainner_models/architecture/OmniSR/OSAG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/chainner_models/architecture/OmniSR/OSAG.py -------------------------------------------------------------------------------- /comfy_extras/chainner_models/architecture/OmniSR/OmniSR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/chainner_models/architecture/OmniSR/OmniSR.py -------------------------------------------------------------------------------- /comfy_extras/chainner_models/architecture/OmniSR/esa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/chainner_models/architecture/OmniSR/esa.py -------------------------------------------------------------------------------- /comfy_extras/chainner_models/architecture/OmniSR/layernorm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/chainner_models/architecture/OmniSR/layernorm.py -------------------------------------------------------------------------------- /comfy_extras/chainner_models/architecture/OmniSR/pixelshuffle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/chainner_models/architecture/OmniSR/pixelshuffle.py -------------------------------------------------------------------------------- /comfy_extras/chainner_models/architecture/RRDB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/chainner_models/architecture/RRDB.py -------------------------------------------------------------------------------- /comfy_extras/chainner_models/architecture/SPSR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/chainner_models/architecture/SPSR.py -------------------------------------------------------------------------------- /comfy_extras/chainner_models/architecture/SRVGG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/chainner_models/architecture/SRVGG.py -------------------------------------------------------------------------------- /comfy_extras/chainner_models/architecture/SwiftSRGAN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/chainner_models/architecture/SwiftSRGAN.py -------------------------------------------------------------------------------- /comfy_extras/chainner_models/architecture/Swin2SR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/chainner_models/architecture/Swin2SR.py -------------------------------------------------------------------------------- /comfy_extras/chainner_models/architecture/SwinIR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/chainner_models/architecture/SwinIR.py -------------------------------------------------------------------------------- /comfy_extras/chainner_models/architecture/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /comfy_extras/chainner_models/architecture/block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/chainner_models/architecture/block.py -------------------------------------------------------------------------------- /comfy_extras/chainner_models/architecture/face/LICENSE-GFPGAN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/chainner_models/architecture/face/LICENSE-GFPGAN -------------------------------------------------------------------------------- /comfy_extras/chainner_models/architecture/face/LICENSE-RestoreFormer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/chainner_models/architecture/face/LICENSE-RestoreFormer -------------------------------------------------------------------------------- /comfy_extras/chainner_models/architecture/face/LICENSE-codeformer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/chainner_models/architecture/face/LICENSE-codeformer -------------------------------------------------------------------------------- /comfy_extras/chainner_models/architecture/face/arcface_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/chainner_models/architecture/face/arcface_arch.py -------------------------------------------------------------------------------- /comfy_extras/chainner_models/architecture/face/codeformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/chainner_models/architecture/face/codeformer.py -------------------------------------------------------------------------------- /comfy_extras/chainner_models/architecture/face/fused_act.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/chainner_models/architecture/face/fused_act.py -------------------------------------------------------------------------------- /comfy_extras/chainner_models/architecture/face/gfpgan_bilinear_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/chainner_models/architecture/face/gfpgan_bilinear_arch.py -------------------------------------------------------------------------------- /comfy_extras/chainner_models/architecture/face/gfpganv1_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/chainner_models/architecture/face/gfpganv1_arch.py -------------------------------------------------------------------------------- /comfy_extras/chainner_models/architecture/face/gfpganv1_clean_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/chainner_models/architecture/face/gfpganv1_clean_arch.py -------------------------------------------------------------------------------- /comfy_extras/chainner_models/architecture/face/restoreformer_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/chainner_models/architecture/face/restoreformer_arch.py -------------------------------------------------------------------------------- /comfy_extras/chainner_models/architecture/face/stylegan2_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/chainner_models/architecture/face/stylegan2_arch.py -------------------------------------------------------------------------------- /comfy_extras/chainner_models/architecture/face/stylegan2_bilinear_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/chainner_models/architecture/face/stylegan2_bilinear_arch.py -------------------------------------------------------------------------------- /comfy_extras/chainner_models/architecture/face/stylegan2_clean_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/chainner_models/architecture/face/stylegan2_clean_arch.py -------------------------------------------------------------------------------- /comfy_extras/chainner_models/architecture/face/upfirdn2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/chainner_models/architecture/face/upfirdn2d.py -------------------------------------------------------------------------------- /comfy_extras/chainner_models/architecture/mat/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/chainner_models/architecture/mat/utils.py -------------------------------------------------------------------------------- /comfy_extras/chainner_models/architecture/timm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/chainner_models/architecture/timm/LICENSE -------------------------------------------------------------------------------- /comfy_extras/chainner_models/architecture/timm/drop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/chainner_models/architecture/timm/drop.py -------------------------------------------------------------------------------- /comfy_extras/chainner_models/architecture/timm/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/chainner_models/architecture/timm/helpers.py -------------------------------------------------------------------------------- /comfy_extras/chainner_models/architecture/timm/weight_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/chainner_models/architecture/timm/weight_init.py -------------------------------------------------------------------------------- /comfy_extras/chainner_models/model_loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/chainner_models/model_loading.py -------------------------------------------------------------------------------- /comfy_extras/chainner_models/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/chainner_models/types.py -------------------------------------------------------------------------------- /comfy_extras/nodes_canny.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/nodes_canny.py -------------------------------------------------------------------------------- /comfy_extras/nodes_clip_sdxl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/nodes_clip_sdxl.py -------------------------------------------------------------------------------- /comfy_extras/nodes_hypernetwork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/nodes_hypernetwork.py -------------------------------------------------------------------------------- /comfy_extras/nodes_mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/nodes_mask.py -------------------------------------------------------------------------------- /comfy_extras/nodes_model_merging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/nodes_model_merging.py -------------------------------------------------------------------------------- /comfy_extras/nodes_post_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/nodes_post_processing.py -------------------------------------------------------------------------------- /comfy_extras/nodes_rebatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/nodes_rebatch.py -------------------------------------------------------------------------------- /comfy_extras/nodes_tomesd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/nodes_tomesd.py -------------------------------------------------------------------------------- /comfy_extras/nodes_upscale_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfy_extras/nodes_upscale_model.py -------------------------------------------------------------------------------- /comfyui_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/comfyui_screenshot.png -------------------------------------------------------------------------------- /cuda_malloc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/cuda_malloc.py -------------------------------------------------------------------------------- /custom_nodes/Zho_Main_Nodes_Chinese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/custom_nodes/Zho_Main_Nodes_Chinese.py -------------------------------------------------------------------------------- /custom_nodes/example_node.py.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/custom_nodes/example_node.py.example -------------------------------------------------------------------------------- /execution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/execution.py -------------------------------------------------------------------------------- /extra_model_paths.yaml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/extra_model_paths.yaml.example -------------------------------------------------------------------------------- /folder_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/folder_paths.py -------------------------------------------------------------------------------- /input/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/input/example.png -------------------------------------------------------------------------------- /latent_preview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/latent_preview.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/main.py -------------------------------------------------------------------------------- /models/checkpoints/put_checkpoints_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/clip/put_clip_or_text_encoder_models_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/clip_vision/put_clip_vision_models_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/configs/anything_v3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/models/configs/anything_v3.yaml -------------------------------------------------------------------------------- /models/configs/v1-inference.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/models/configs/v1-inference.yaml -------------------------------------------------------------------------------- /models/configs/v1-inference_clip_skip_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/models/configs/v1-inference_clip_skip_2.yaml -------------------------------------------------------------------------------- /models/configs/v1-inference_clip_skip_2_fp16.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/models/configs/v1-inference_clip_skip_2_fp16.yaml -------------------------------------------------------------------------------- /models/configs/v1-inference_fp16.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/models/configs/v1-inference_fp16.yaml -------------------------------------------------------------------------------- /models/configs/v1-inpainting-inference.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/models/configs/v1-inpainting-inference.yaml -------------------------------------------------------------------------------- /models/configs/v2-inference-v.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/models/configs/v2-inference-v.yaml -------------------------------------------------------------------------------- /models/configs/v2-inference-v_fp32.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/models/configs/v2-inference-v_fp32.yaml -------------------------------------------------------------------------------- /models/configs/v2-inference.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/models/configs/v2-inference.yaml -------------------------------------------------------------------------------- /models/configs/v2-inference_fp32.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/models/configs/v2-inference_fp32.yaml -------------------------------------------------------------------------------- /models/configs/v2-inpainting-inference.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/models/configs/v2-inpainting-inference.yaml -------------------------------------------------------------------------------- /models/controlnet/put_controlnets_and_t2i_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/diffusers/put_diffusers_models_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/embeddings/put_embeddings_or_textual_inversion_concepts_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/gligen/put_gligen_models_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/hypernetworks/put_hypernetworks_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/loras/put_loras_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/style_models/put_t2i_style_model_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/unet/put_unet_files_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/upscale_models/put_esrgan_and_other_upscale_models_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/vae/put_vae_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/vae_approx/put_taesd_encoder_pth_and_taesd_decoder_pth_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/nodes.py -------------------------------------------------------------------------------- /nodes_Zh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/nodes_Zh.py -------------------------------------------------------------------------------- /notebooks/comfyui_colab.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/notebooks/comfyui_colab.ipynb -------------------------------------------------------------------------------- /output/_output_images_will_be_put_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/requirements.txt -------------------------------------------------------------------------------- /script_examples/basic_api_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/script_examples/basic_api_example.py -------------------------------------------------------------------------------- /script_examples/websockets_api_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/script_examples/websockets_api_example.py -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/server.py -------------------------------------------------------------------------------- /web/extensions/core/clipspace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/web/extensions/core/clipspace.js -------------------------------------------------------------------------------- /web/extensions/core/colorPalette.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/web/extensions/core/colorPalette.js -------------------------------------------------------------------------------- /web/extensions/core/contextMenuFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/web/extensions/core/contextMenuFilter.js -------------------------------------------------------------------------------- /web/extensions/core/dynamicPrompts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/web/extensions/core/dynamicPrompts.js -------------------------------------------------------------------------------- /web/extensions/core/editAttention.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/web/extensions/core/editAttention.js -------------------------------------------------------------------------------- /web/extensions/core/invertMenuScrolling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/web/extensions/core/invertMenuScrolling.js -------------------------------------------------------------------------------- /web/extensions/core/keybinds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/web/extensions/core/keybinds.js -------------------------------------------------------------------------------- /web/extensions/core/maskeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/web/extensions/core/maskeditor.js -------------------------------------------------------------------------------- /web/extensions/core/nodeTemplates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/web/extensions/core/nodeTemplates.js -------------------------------------------------------------------------------- /web/extensions/core/noteNode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/web/extensions/core/noteNode.js -------------------------------------------------------------------------------- /web/extensions/core/rerouteNode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/web/extensions/core/rerouteNode.js -------------------------------------------------------------------------------- /web/extensions/core/saveImageExtraOutput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/web/extensions/core/saveImageExtraOutput.js -------------------------------------------------------------------------------- /web/extensions/core/slotDefaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/web/extensions/core/slotDefaults.js -------------------------------------------------------------------------------- /web/extensions/core/snapToGrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/web/extensions/core/snapToGrid.js -------------------------------------------------------------------------------- /web/extensions/core/uploadImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/web/extensions/core/uploadImage.js -------------------------------------------------------------------------------- /web/extensions/core/widgetInputs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/web/extensions/core/widgetInputs.js -------------------------------------------------------------------------------- /web/extensions/logging.js.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/web/extensions/logging.js.example -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/web/index.html -------------------------------------------------------------------------------- /web/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/web/jsconfig.json -------------------------------------------------------------------------------- /web/lib/litegraph.core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/web/lib/litegraph.core.js -------------------------------------------------------------------------------- /web/lib/litegraph.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/web/lib/litegraph.css -------------------------------------------------------------------------------- /web/lib/litegraph.extensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/web/lib/litegraph.extensions.js -------------------------------------------------------------------------------- /web/scripts/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/web/scripts/api.js -------------------------------------------------------------------------------- /web/scripts/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/web/scripts/app.js -------------------------------------------------------------------------------- /web/scripts/defaultGraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/web/scripts/defaultGraph.js -------------------------------------------------------------------------------- /web/scripts/pnginfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/web/scripts/pnginfo.js -------------------------------------------------------------------------------- /web/scripts/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/web/scripts/ui.js -------------------------------------------------------------------------------- /web/scripts/widgets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/web/scripts/widgets.js -------------------------------------------------------------------------------- /web/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/web/style.css -------------------------------------------------------------------------------- /web/types/comfy.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/web/types/comfy.d.ts -------------------------------------------------------------------------------- /web/types/litegraph.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZHO-ZHO-ZHO/ComfyUI-ZHO-Chinese/HEAD/web/types/litegraph.d.ts --------------------------------------------------------------------------------