horde-engine 2.22.2__tar.gz → 3.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {horde_engine-2.22.2 → horde_engine-3.1.0}/.gitignore +1 -1
- {horde_engine-2.22.2 → horde_engine-3.1.0}/PKG-INFO +277 -250
- horde_engine-3.1.0/README.md +309 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/__init__.py +5 -0
- horde_engine-3.1.0/hordelib/_version.py +24 -0
- horde_engine-3.1.0/hordelib/api.py +112 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/benchmark.py +1 -1
- horde_engine-3.1.0/hordelib/beta_models.py +116 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/comfy_horde.py +496 -452
- horde_engine-3.1.0/hordelib/config_path.py +68 -0
- horde_engine-3.1.0/hordelib/consts.py +19 -0
- horde_engine-3.1.0/hordelib/execution/__init__.py +20 -0
- horde_engine-3.1.0/hordelib/execution/comfy_patches.py +463 -0
- horde_engine-3.1.0/hordelib/execution/graph_utils.py +169 -0
- horde_engine-3.1.0/hordelib/execution/in_process.py +127 -0
- horde_engine-3.1.0/hordelib/execution/interface.py +92 -0
- horde_engine-3.1.0/hordelib/execution/phase_timing.py +140 -0
- horde_engine-3.1.0/hordelib/execution/progress_hook.py +107 -0
- horde_engine-3.1.0/hordelib/execution/sampling_lease.py +105 -0
- horde_engine-3.1.0/hordelib/feature_impact.py +365 -0
- horde_engine-3.1.0/hordelib/horde.py +736 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/initialisation.py +27 -22
- horde_engine-3.1.0/hordelib/installation/__init__.py +16 -0
- horde_engine-3.1.0/hordelib/installation/__main__.py +61 -0
- horde_engine-3.1.0/hordelib/installation/installer.py +161 -0
- horde_engine-3.1.0/hordelib/installation/manifest.json +19 -0
- horde_engine-3.1.0/hordelib/installation/manifest.py +84 -0
- horde_engine-3.1.0/hordelib/integrations/__init__.py +5 -0
- horde_engine-3.1.0/hordelib/integrations/logfire_comfy_internals.py +305 -0
- horde_engine-3.1.0/hordelib/integrations/logfire_setup.py +257 -0
- horde_engine-3.1.0/hordelib/metrics.py +210 -0
- horde_engine-3.1.0/hordelib/model_manager/base.py +562 -0
- horde_engine-3.1.0/hordelib/model_manager/civitai_adhoc.py +857 -0
- horde_engine-3.1.0/hordelib/model_manager/civitai_provider.py +86 -0
- horde_engine-3.1.0/hordelib/model_manager/civitai_records.py +112 -0
- horde_engine-3.1.0/hordelib/model_manager/codeformer.py +14 -0
- horde_engine-3.1.0/hordelib/model_manager/compvis.py +101 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/model_manager/controlnet.py +5 -3
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/model_manager/diffusers.py +3 -2
- horde_engine-3.1.0/hordelib/model_manager/esrgan.py +18 -0
- horde_engine-3.1.0/hordelib/model_manager/gfpgan.py +18 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/model_manager/hyper.py +98 -44
- horde_engine-3.1.0/hordelib/model_manager/lora.py +697 -0
- horde_engine-3.1.0/hordelib/model_manager/miscellaneous.py +18 -0
- horde_engine-3.1.0/hordelib/model_manager/safety_checker.py +18 -0
- horde_engine-3.1.0/hordelib/model_manager/ti.py +365 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/comfyui_layerdiffuse/layered_diffusion.py +103 -63
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/comfyui_layerdiffuse/lib_layerdiffusion/attention_sharing.py +31 -61
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/comfyui_layerdiffuse/lib_layerdiffusion/models.py +24 -58
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/comfyui_layerdiffuse/lib_layerdiffusion/utils.py +21 -23
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/__init__.py +1 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/facelib/utils/misc.py +19 -2
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/node_controlnet_model_loader.py +1 -1
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/node_image_loader.py +1 -1
- horde_engine-3.1.0/hordelib/nodes/node_image_output.py +62 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/node_lora_loader.py +29 -8
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/node_model_loader.py +120 -35
- horde_engine-3.1.0/hordelib/pipeline/__init__.py +30 -0
- horde_engine-3.1.0/hordelib/pipeline/constants.py +58 -0
- horde_engine-3.1.0/hordelib/pipeline/context.py +62 -0
- horde_engine-3.1.0/hordelib/pipeline/families/__init__.py +9 -0
- horde_engine-3.1.0/hordelib/pipeline/families/image.py +414 -0
- horde_engine-3.1.0/hordelib/pipeline/families/post_processing.py +71 -0
- horde_engine-3.1.0/hordelib/pipeline/graph.py +147 -0
- horde_engine-3.1.0/hordelib/pipeline/horde_compat.py +158 -0
- horde_engine-3.1.0/hordelib/pipeline/patches.py +390 -0
- horde_engine-3.1.0/hordelib/pipeline/payload.py +250 -0
- horde_engine-3.1.0/hordelib/pipeline/payload_pp.py +120 -0
- horde_engine-3.1.0/hordelib/pipeline/registry.py +61 -0
- horde_engine-3.1.0/hordelib/pipeline/resolution.py +320 -0
- horde_engine-3.1.0/hordelib/pipeline/template.py +99 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipelines/pipeline_controlnet.json +4 -108
- horde_engine-3.1.0/hordelib/pipelines/pipeline_controlnet_annotator.json +39 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipelines/pipeline_controlnet_hires_fix.json +4 -108
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipelines/pipeline_qwen.json +1 -1
- horde_engine-3.1.0/hordelib/preload.py +244 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/settings.py +7 -20
- horde_engine-3.1.0/hordelib/shared_model_manager.py +166 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/train.py +2 -2
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/utils/distance.py +3 -3
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/utils/image_utils.py +4 -4
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/utils/ioredirect.py +35 -15
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/utils/logger.py +90 -3
- horde_engine-3.1.0/hordelib/utils/torch_memory.py +63 -0
- horde_engine-3.1.0/pyproject.toml +337 -0
- horde_engine-2.22.2/.changelog +0 -32
- horde_engine-2.22.2/.git-blame-ignore-revs +0 -13
- horde_engine-2.22.2/.github/dependabot.yml +0 -11
- horde_engine-2.22.2/.github/workflows/maintests.yml +0 -61
- horde_engine-2.22.2/.github/workflows/prtests.yml +0 -68
- horde_engine-2.22.2/.github/workflows/release.yml +0 -114
- horde_engine-2.22.2/.pre-commit-config.yaml +0 -39
- horde_engine-2.22.2/CHANGELOG.md +0 -1678
- horde_engine-2.22.2/MANIFEST.in +0 -12
- horde_engine-2.22.2/README.md +0 -294
- horde_engine-2.22.2/build_helper.py +0 -110
- horde_engine-2.22.2/examples/download_all_sd_models.py +0 -13
- horde_engine-2.22.2/examples/kudos.py +0 -230
- horde_engine-2.22.2/examples/lora_downloader.py +0 -300
- horde_engine-2.22.2/examples/make_index.py +0 -106
- horde_engine-2.22.2/examples/make_index_all_models.py +0 -112
- horde_engine-2.22.2/examples/run_all_models.py +0 -78
- horde_engine-2.22.2/examples/run_all_stress_tests.py +0 -47
- horde_engine-2.22.2/examples/run_controlnet.py +0 -52
- horde_engine-2.22.2/examples/run_controlnet_annotator.py +0 -51
- horde_engine-2.22.2/examples/run_facefix.py +0 -40
- horde_engine-2.22.2/examples/run_img2img.py +0 -46
- horde_engine-2.22.2/examples/run_img2img_hires.py +0 -46
- horde_engine-2.22.2/examples/run_img2img_inpaint.py +0 -47
- horde_engine-2.22.2/examples/run_img2img_inpaint_mask.py +0 -48
- horde_engine-2.22.2/examples/run_img2img_mask.py +0 -48
- horde_engine-2.22.2/examples/run_img2img_outpaint.py +0 -47
- horde_engine-2.22.2/examples/run_inpainting.py +0 -47
- horde_engine-2.22.2/examples/run_kudos_test.py +0 -163
- horde_engine-2.22.2/examples/run_long_prompt_check.py +0 -126
- horde_engine-2.22.2/examples/run_lora.py +0 -54
- horde_engine-2.22.2/examples/run_memory_test.py +0 -181
- horde_engine-2.22.2/examples/run_sdk_inference_example.py +0 -66
- horde_engine-2.22.2/examples/run_stress_test_cnet.py +0 -136
- horde_engine-2.22.2/examples/run_stress_test_cnet_preproc.py +0 -119
- horde_engine-2.22.2/examples/run_stress_test_dynamic.py +0 -206
- horde_engine-2.22.2/examples/run_stress_test_img2img.py +0 -135
- horde_engine-2.22.2/examples/run_stress_test_job_collection.py +0 -395
- horde_engine-2.22.2/examples/run_stress_test_mixed.py +0 -233
- horde_engine-2.22.2/examples/run_stress_test_pp.py +0 -129
- horde_engine-2.22.2/examples/run_stress_test_txt2img.py +0 -134
- horde_engine-2.22.2/examples/run_stress_test_txt2img_hiresfix.py +0 -134
- horde_engine-2.22.2/examples/run_txt2img.py +0 -43
- horde_engine-2.22.2/examples/run_txt2img_hires.py +0 -43
- horde_engine-2.22.2/examples/run_txt2img_local_model.py +0 -48
- horde_engine-2.22.2/examples/run_upscale.py +0 -40
- horde_engine-2.22.2/horde_engine.egg-info/PKG-INFO +0 -1033
- horde_engine-2.22.2/horde_engine.egg-info/SOURCES.txt +0 -1225
- horde_engine-2.22.2/horde_engine.egg-info/dependency_links.txt +0 -1
- horde_engine-2.22.2/horde_engine.egg-info/entry_points.txt +0 -3
- horde_engine-2.22.2/horde_engine.egg-info/requires.txt +0 -59
- horde_engine-2.22.2/horde_engine.egg-info/top_level.txt +0 -1
- horde_engine-2.22.2/hordelib/_comfyui/.gitattributes +0 -3
- horde_engine-2.22.2/hordelib/_comfyui/.gitignore +0 -26
- horde_engine-2.22.2/hordelib/_comfyui/CODEOWNERS +0 -3
- horde_engine-2.22.2/hordelib/_comfyui/CONTRIBUTING.md +0 -41
- horde_engine-2.22.2/hordelib/_comfyui/QUANTIZATION.md +0 -168
- horde_engine-2.22.2/hordelib/_comfyui/README.md +0 -428
- horde_engine-2.22.2/hordelib/_comfyui/alembic.ini +0 -84
- horde_engine-2.22.2/hordelib/_comfyui/alembic_db/README.md +0 -4
- horde_engine-2.22.2/hordelib/_comfyui/alembic_db/env.py +0 -64
- horde_engine-2.22.2/hordelib/_comfyui/alembic_db/script.py.mako +0 -28
- horde_engine-2.22.2/hordelib/_comfyui/api_server/routes/internal/README.md +0 -3
- horde_engine-2.22.2/hordelib/_comfyui/api_server/routes/internal/internal_routes.py +0 -73
- horde_engine-2.22.2/hordelib/_comfyui/api_server/services/terminal_service.py +0 -60
- horde_engine-2.22.2/hordelib/_comfyui/api_server/utils/file_operations.py +0 -42
- horde_engine-2.22.2/hordelib/_comfyui/app/app_settings.py +0 -65
- horde_engine-2.22.2/hordelib/_comfyui/app/custom_node_manager.py +0 -145
- horde_engine-2.22.2/hordelib/_comfyui/app/database/db.py +0 -112
- horde_engine-2.22.2/hordelib/_comfyui/app/database/models.py +0 -14
- horde_engine-2.22.2/hordelib/_comfyui/app/frontend_management.py +0 -457
- horde_engine-2.22.2/hordelib/_comfyui/app/logger.py +0 -98
- horde_engine-2.22.2/hordelib/_comfyui/app/model_manager.py +0 -195
- horde_engine-2.22.2/hordelib/_comfyui/app/subgraph_manager.py +0 -112
- horde_engine-2.22.2/hordelib/_comfyui/app/user_manager.py +0 -456
- horde_engine-2.22.2/hordelib/_comfyui/comfy/audio_encoders/audio_encoders.py +0 -91
- horde_engine-2.22.2/hordelib/_comfyui/comfy/audio_encoders/wav2vec2.py +0 -252
- horde_engine-2.22.2/hordelib/_comfyui/comfy/audio_encoders/whisper.py +0 -186
- horde_engine-2.22.2/hordelib/_comfyui/comfy/checkpoint_pickle.py +0 -13
- horde_engine-2.22.2/hordelib/_comfyui/comfy/cldm/cldm.py +0 -434
- horde_engine-2.22.2/hordelib/_comfyui/comfy/cldm/control_types.py +0 -10
- horde_engine-2.22.2/hordelib/_comfyui/comfy/cldm/dit_embedder.py +0 -120
- horde_engine-2.22.2/hordelib/_comfyui/comfy/cldm/mmdit.py +0 -81
- horde_engine-2.22.2/hordelib/_comfyui/comfy/cli_args.py +0 -244
- horde_engine-2.22.2/hordelib/_comfyui/comfy/clip_config_bigg.json +0 -23
- horde_engine-2.22.2/hordelib/_comfyui/comfy/clip_model.py +0 -254
- horde_engine-2.22.2/hordelib/_comfyui/comfy/clip_vision.py +0 -164
- horde_engine-2.22.2/hordelib/_comfyui/comfy/clip_vision_config_g.json +0 -18
- horde_engine-2.22.2/hordelib/_comfyui/comfy/clip_vision_config_h.json +0 -18
- horde_engine-2.22.2/hordelib/_comfyui/comfy/clip_vision_config_vitl.json +0 -18
- horde_engine-2.22.2/hordelib/_comfyui/comfy/clip_vision_config_vitl_336.json +0 -18
- horde_engine-2.22.2/hordelib/_comfyui/comfy/clip_vision_config_vitl_336_llava.json +0 -19
- horde_engine-2.22.2/hordelib/_comfyui/comfy/clip_vision_siglip_384.json +0 -13
- horde_engine-2.22.2/hordelib/_comfyui/comfy/clip_vision_siglip_512.json +0 -13
- horde_engine-2.22.2/hordelib/_comfyui/comfy/comfy_types/README.md +0 -43
- horde_engine-2.22.2/hordelib/_comfyui/comfy/comfy_types/__init__.py +0 -46
- horde_engine-2.22.2/hordelib/_comfyui/comfy/comfy_types/examples/example_nodes.py +0 -28
- horde_engine-2.22.2/hordelib/_comfyui/comfy/comfy_types/examples/input_options.png +0 -0
- horde_engine-2.22.2/hordelib/_comfyui/comfy/comfy_types/examples/input_types.png +0 -0
- horde_engine-2.22.2/hordelib/_comfyui/comfy/comfy_types/examples/required_hint.png +0 -0
- horde_engine-2.22.2/hordelib/_comfyui/comfy/comfy_types/node_typing.py +0 -350
- horde_engine-2.22.2/hordelib/_comfyui/comfy/conds.py +0 -137
- horde_engine-2.22.2/hordelib/_comfyui/comfy/context_windows.py +0 -540
- horde_engine-2.22.2/hordelib/_comfyui/comfy/controlnet.py +0 -884
- horde_engine-2.22.2/hordelib/_comfyui/comfy/diffusers_convert.py +0 -189
- horde_engine-2.22.2/hordelib/_comfyui/comfy/diffusers_load.py +0 -36
- horde_engine-2.22.2/hordelib/_comfyui/comfy/extra_samplers/uni_pc.py +0 -873
- horde_engine-2.22.2/hordelib/_comfyui/comfy/float.py +0 -67
- horde_engine-2.22.2/hordelib/_comfyui/comfy/gligen.py +0 -299
- horde_engine-2.22.2/hordelib/_comfyui/comfy/hooks.py +0 -785
- horde_engine-2.22.2/hordelib/_comfyui/comfy/image_encoders/dino2.py +0 -160
- horde_engine-2.22.2/hordelib/_comfyui/comfy/image_encoders/dino2_giant.json +0 -21
- horde_engine-2.22.2/hordelib/_comfyui/comfy/image_encoders/dino2_large.json +0 -22
- horde_engine-2.22.2/hordelib/_comfyui/comfy/k_diffusion/deis.py +0 -120
- horde_engine-2.22.2/hordelib/_comfyui/comfy/k_diffusion/sa_solver.py +0 -121
- horde_engine-2.22.2/hordelib/_comfyui/comfy/k_diffusion/sampling.py +0 -1786
- horde_engine-2.22.2/hordelib/_comfyui/comfy/k_diffusion/utils.py +0 -313
- horde_engine-2.22.2/hordelib/_comfyui/comfy/latent_formats.py +0 -760
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/ace/attention.py +0 -768
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/ace/lyric_encoder.py +0 -1067
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/ace/model.py +0 -411
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/ace/vae/autoencoder_dc.py +0 -644
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/ace/vae/music_dcae_pipeline.py +0 -98
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/ace/vae/music_log_mel.py +0 -113
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/ace/vae/music_vocoder.py +0 -538
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/audio/autoencoder.py +0 -276
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/audio/dit.py +0 -899
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/audio/embedders.py +0 -108
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/aura/mmdit.py +0 -507
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/cascade/common.py +0 -154
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/cascade/controlnet.py +0 -92
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/cascade/stage_a.py +0 -259
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/cascade/stage_b.py +0 -256
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/cascade/stage_c.py +0 -273
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/cascade/stage_c_coder.py +0 -98
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/chroma/layers.py +0 -63
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/chroma/model.py +0 -292
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/chroma_radiance/layers.py +0 -206
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/chroma_radiance/model.py +0 -319
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/common_dit.py +0 -16
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/cosmos/blocks.py +0 -805
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/cosmos/cosmos_tokenizer/layers3d.py +0 -1041
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/cosmos/cosmos_tokenizer/patching.py +0 -377
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/cosmos/cosmos_tokenizer/utils.py +0 -113
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/cosmos/model.py +0 -552
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/cosmos/position_embedding.py +0 -207
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/cosmos/predict2.py +0 -886
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/cosmos/vae.py +0 -131
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/flux/controlnet.py +0 -208
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/flux/layers.py +0 -350
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/flux/math.py +0 -40
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/flux/model.py +0 -340
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/flux/redux.py +0 -25
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/genmo/joint_model/asymm_models_joint.py +0 -561
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/genmo/joint_model/layers.py +0 -153
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/genmo/joint_model/rope_mixed.py +0 -88
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/genmo/joint_model/temporal_rope.py +0 -34
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/genmo/joint_model/utils.py +0 -102
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/genmo/vae/model.py +0 -711
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/hidream/model.py +0 -829
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/hunyuan3d/model.py +0 -148
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/hunyuan3d/vae.py +0 -988
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/hunyuan3dv2_1/hunyuandit.py +0 -659
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/hunyuan_video/model.py +0 -495
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/hunyuan_video/upsampler.py +0 -120
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/hunyuan_video/vae.py +0 -136
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/hunyuan_video/vae_refiner.py +0 -363
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/hydit/attn_layers.py +0 -218
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/hydit/controlnet.py +0 -311
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/hydit/models.py +0 -417
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/hydit/poolers.py +0 -36
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/hydit/posemb_layers.py +0 -224
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/lightricks/model.py +0 -499
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/lightricks/symmetric_patchifier.py +0 -117
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/lightricks/vae/causal_conv3d.py +0 -65
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/lightricks/vae/causal_video_autoencoder.py +0 -1092
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/lightricks/vae/conv_nd_factory.py +0 -90
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/lightricks/vae/dual_conv3d.py +0 -217
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/lightricks/vae/pixel_norm.py +0 -12
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/lumina/model.py +0 -596
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/mmaudio/vae/activations.py +0 -120
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/mmaudio/vae/alias_free_torch.py +0 -157
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/mmaudio/vae/autoencoder.py +0 -156
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/mmaudio/vae/bigvgan.py +0 -219
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/mmaudio/vae/distributions.py +0 -92
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/mmaudio/vae/vae.py +0 -358
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/mmaudio/vae/vae_modules.py +0 -121
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/models/autoencoder.py +0 -279
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/modules/attention.py +0 -1094
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/modules/diffusionmodules/mmdit.py +0 -1036
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/modules/diffusionmodules/model.py +0 -734
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/modules/diffusionmodules/openaimodel.py +0 -913
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/modules/diffusionmodules/upscaling.py +0 -84
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/modules/diffusionmodules/util.py +0 -306
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/modules/distributions/distributions.py +0 -92
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/modules/ema.py +0 -80
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/modules/encoders/noise_aug_modules.py +0 -35
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/modules/sub_quadratic_attention.py +0 -275
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/modules/temporal_ae.py +0 -246
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/omnigen/omnigen2.py +0 -470
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/pixart/blocks.py +0 -380
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/pixart/pixartms.py +0 -256
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/qwen_image/controlnet.py +0 -77
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/qwen_image/model.py +0 -482
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/util.py +0 -197
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/wan/model.py +0 -1593
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/wan/model_animate.py +0 -548
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/wan/vae.py +0 -513
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/wan/vae2_2.py +0 -717
- horde_engine-2.22.2/hordelib/_comfyui/comfy/lora.py +0 -424
- horde_engine-2.22.2/hordelib/_comfyui/comfy/lora_convert.py +0 -43
- horde_engine-2.22.2/hordelib/_comfyui/comfy/model_base.py +0 -1644
- horde_engine-2.22.2/hordelib/_comfyui/comfy/model_detection.py +0 -1052
- horde_engine-2.22.2/hordelib/_comfyui/comfy/model_management.py +0 -1540
- horde_engine-2.22.2/hordelib/_comfyui/comfy/model_patcher.py +0 -1353
- horde_engine-2.22.2/hordelib/_comfyui/comfy/model_sampling.py +0 -389
- horde_engine-2.22.2/hordelib/_comfyui/comfy/nested_tensor.py +0 -91
- horde_engine-2.22.2/hordelib/_comfyui/comfy/ops.py +0 -699
- horde_engine-2.22.2/hordelib/_comfyui/comfy/options.py +0 -6
- horde_engine-2.22.2/hordelib/_comfyui/comfy/patcher_extension.py +0 -158
- horde_engine-2.22.2/hordelib/_comfyui/comfy/pixel_space_convert.py +0 -16
- horde_engine-2.22.2/hordelib/_comfyui/comfy/quant_ops.py +0 -573
- horde_engine-2.22.2/hordelib/_comfyui/comfy/rmsnorm.py +0 -57
- horde_engine-2.22.2/hordelib/_comfyui/comfy/sample.py +0 -67
- horde_engine-2.22.2/hordelib/_comfyui/comfy/sampler_helpers.py +0 -184
- horde_engine-2.22.2/hordelib/_comfyui/comfy/samplers.py +0 -1163
- horde_engine-2.22.2/hordelib/_comfyui/comfy/sd.py +0 -1477
- horde_engine-2.22.2/hordelib/_comfyui/comfy/sd1_clip.py +0 -711
- horde_engine-2.22.2/hordelib/_comfyui/comfy/sd1_clip_config.json +0 -25
- horde_engine-2.22.2/hordelib/_comfyui/comfy/sd1_tokenizer/merges.txt +0 -48895
- horde_engine-2.22.2/hordelib/_comfyui/comfy/sd1_tokenizer/special_tokens_map.json +0 -24
- horde_engine-2.22.2/hordelib/_comfyui/comfy/sd1_tokenizer/tokenizer_config.json +0 -34
- horde_engine-2.22.2/hordelib/_comfyui/comfy/sd1_tokenizer/vocab.json +0 -49410
- horde_engine-2.22.2/hordelib/_comfyui/comfy/sdxl_clip.py +0 -95
- horde_engine-2.22.2/hordelib/_comfyui/comfy/supported_models.py +0 -1478
- horde_engine-2.22.2/hordelib/_comfyui/comfy/supported_models_base.py +0 -120
- horde_engine-2.22.2/hordelib/_comfyui/comfy/t2i_adapter/adapter.py +0 -299
- horde_engine-2.22.2/hordelib/_comfyui/comfy/taesd/taehv.py +0 -171
- horde_engine-2.22.2/hordelib/_comfyui/comfy/taesd/taesd.py +0 -79
- horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/ace.py +0 -153
- horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/ace_lyrics_tokenizer/vocab.json +0 -15535
- horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/ace_text_cleaners.py +0 -395
- horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/aura_t5.py +0 -22
- horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/bert.py +0 -143
- horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/byt5_config_small_glyph.json +0 -22
- horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/byt5_tokenizer/added_tokens.json +0 -127
- horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/byt5_tokenizer/special_tokens_map.json +0 -150
- horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/byt5_tokenizer/tokenizer_config.json +0 -1163
- horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/cosmos.py +0 -42
- horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/flux.py +0 -176
- horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/genmo.py +0 -38
- horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/hidream.py +0 -155
- horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/hunyuan_image.py +0 -103
- horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/hunyuan_video.py +0 -171
- horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/hydit.py +0 -81
- horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/hydit_clip.json +0 -35
- horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/hydit_clip_tokenizer/special_tokens_map.json +0 -7
- horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/hydit_clip_tokenizer/tokenizer_config.json +0 -16
- horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/hydit_clip_tokenizer/vocab.txt +0 -47020
- horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/llama.py +0 -604
- horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/llama_tokenizer/tokenizer.json +0 -410579
- horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/llama_tokenizer/tokenizer_config.json +0 -2095
- horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/long_clipl.py +0 -27
- horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/lt.py +0 -18
- horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/lumina2.py +0 -57
- horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/mt5_config_xl.json +0 -22
- horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/omnigen2.py +0 -44
- horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/pixart_t5.py +0 -42
- horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/qwen25_tokenizer/merges.txt +0 -151388
- horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/qwen25_tokenizer/tokenizer_config.json +0 -241
- horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/qwen25_tokenizer/vocab.json +0 -1
- horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/qwen_image.py +0 -97
- horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/qwen_vl.py +0 -428
- horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/sa_t5.py +0 -22
- horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/sd2_clip.py +0 -23
- horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/sd2_clip_config.json +0 -23
- horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/sd3_clip.py +0 -166
- horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/spiece_tokenizer.py +0 -34
- horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/t5.py +0 -249
- horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/t5_config_base.json +0 -22
- horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/t5_config_xxl.json +0 -22
- horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/t5_old_config_xxl.json +0 -22
- horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/t5_pile_config_xl.json +0 -22
- horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/t5_pile_tokenizer/tokenizer.model +0 -0
- horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/t5_tokenizer/special_tokens_map.json +0 -125
- horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/t5_tokenizer/tokenizer.json +0 -129428
- horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/t5_tokenizer/tokenizer_config.json +0 -939
- horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/umt5_config_base.json +0 -22
- horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/umt5_config_xxl.json +0 -22
- horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/wan.py +0 -37
- horde_engine-2.22.2/hordelib/_comfyui/comfy/text_encoders/z_image.py +0 -48
- horde_engine-2.22.2/hordelib/_comfyui/comfy/utils.py +0 -1196
- horde_engine-2.22.2/hordelib/_comfyui/comfy/weight_adapter/__init__.py +0 -34
- horde_engine-2.22.2/hordelib/_comfyui/comfy/weight_adapter/base.py +0 -175
- horde_engine-2.22.2/hordelib/_comfyui/comfy/weight_adapter/boft.py +0 -115
- horde_engine-2.22.2/hordelib/_comfyui/comfy/weight_adapter/glora.py +0 -93
- horde_engine-2.22.2/hordelib/_comfyui/comfy/weight_adapter/loha.py +0 -232
- horde_engine-2.22.2/hordelib/_comfyui/comfy/weight_adapter/lokr.py +0 -220
- horde_engine-2.22.2/hordelib/_comfyui/comfy/weight_adapter/lora.py +0 -212
- horde_engine-2.22.2/hordelib/_comfyui/comfy/weight_adapter/oft.py +0 -161
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api/feature_flags.py +0 -69
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api/generate_api_stubs.py +0 -86
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api/input/__init__.py +0 -16
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api/input/basic_types.py +0 -14
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api/input/video_types.py +0 -6
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api/input_impl/__init__.py +0 -7
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api/input_impl/video_types.py +0 -2
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api/internal/__init__.py +0 -150
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api/internal/api_registry.py +0 -39
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api/internal/async_to_sync.py +0 -1002
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api/internal/singleton.py +0 -33
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api/latest/__init__.py +0 -134
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api/latest/_input/__init__.py +0 -10
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api/latest/_input/basic_types.py +0 -42
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api/latest/_input/video_types.py +0 -113
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api/latest/_input_impl/__init__.py +0 -7
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api/latest/_input_impl/video_types.py +0 -380
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api/latest/_io.py +0 -1664
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api/latest/_resources.py +0 -72
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api/latest/_ui.py +0 -464
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api/latest/_util/__init__.py +0 -11
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api/latest/_util/geometry_types.py +0 -12
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api/latest/_util/video_types.py +0 -52
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api/latest/generated/ComfyAPISyncStub.pyi +0 -20
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api/torch_helpers/__init__.py +0 -5
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api/torch_helpers/torch_compile.py +0 -69
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api/util/__init__.py +0 -8
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api/util/video_types.py +0 -12
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api/util.py +0 -8
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api/v0_0_1/__init__.py +0 -42
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api/v0_0_1/generated/ComfyAPISyncStub.pyi +0 -20
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api/v0_0_2/__init__.py +0 -45
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api/v0_0_2/generated/ComfyAPISyncStub.pyi +0 -20
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api/version_list.py +0 -12
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/README.md +0 -65
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/__init__.py +0 -0
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/apis/__init__.py +0 -6161
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/apis/bfl_api.py +0 -153
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/apis/gemini_api.py +0 -236
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/apis/luma_api.py +0 -253
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/apis/minimax_api.py +0 -120
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/apis/pika_api.py +0 -100
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/apis/pixverse_api.py +0 -146
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/apis/recraft_api.py +0 -262
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/apis/rodin_api.py +0 -54
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/apis/stability_api.py +0 -149
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/apis/topaz_api.py +0 -133
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/apis/tripo_api.py +0 -282
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/apis/veo_api.py +0 -99
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/canary.py +0 -10
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/mapper_utils.py +0 -116
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/nodes_bfl.py +0 -649
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/nodes_bytedance.py +0 -1114
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/nodes_gemini.py +0 -712
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/nodes_ideogram.py +0 -771
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/nodes_kling.py +0 -1532
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/nodes_ltxv.py +0 -199
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/nodes_luma.py +0 -585
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/nodes_minimax.py +0 -432
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/nodes_moonvalley.py +0 -525
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/nodes_openai.py +0 -800
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/nodes_pika.py +0 -568
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/nodes_pixverse.py +0 -431
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/nodes_recraft.py +0 -1001
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/nodes_rodin.py +0 -520
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/nodes_runway.py +0 -522
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/nodes_sora.py +0 -151
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/nodes_stability.py +0 -888
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/nodes_topaz.py +0 -418
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/nodes_tripo.py +0 -645
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/nodes_veo2.py +0 -514
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/nodes_vidu.py +0 -565
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/nodes_wan.py +0 -708
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/redocly-dev.yaml +0 -10
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/redocly.yaml +0 -10
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/util/__init__.py +0 -99
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/util/_helpers.py +0 -71
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/util/client.py +0 -946
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/util/common_exceptions.py +0 -14
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/util/conversions.py +0 -470
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/util/download_helpers.py +0 -262
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/util/request_logger.py +0 -165
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/util/upload_helpers.py +0 -339
- horde_engine-2.22.2/hordelib/_comfyui/comfy_api_nodes/util/validation_utils.py +0 -230
- horde_engine-2.22.2/hordelib/_comfyui/comfy_config/config_parser.py +0 -152
- horde_engine-2.22.2/hordelib/_comfyui/comfy_config/types.py +0 -97
- horde_engine-2.22.2/hordelib/_comfyui/comfy_execution/caching.py +0 -423
- horde_engine-2.22.2/hordelib/_comfyui/comfy_execution/graph.py +0 -332
- horde_engine-2.22.2/hordelib/_comfyui/comfy_execution/graph_utils.py +0 -155
- horde_engine-2.22.2/hordelib/_comfyui/comfy_execution/progress.py +0 -350
- horde_engine-2.22.2/hordelib/_comfyui/comfy_execution/utils.py +0 -46
- horde_engine-2.22.2/hordelib/_comfyui/comfy_execution/validation.py +0 -39
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/chainner_models/model_loading.py +0 -6
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_ace.py +0 -63
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_advanced_samplers.py +0 -121
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_align_your_steps.py +0 -69
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_apg.py +0 -106
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_attention_multiply.py +0 -150
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_audio.py +0 -614
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_audio_encoder.py +0 -62
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_camera_trajectory.py +0 -239
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_canny.py +0 -41
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_cfg.py +0 -91
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_chroma_radiance.py +0 -114
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_clip_sdxl.py +0 -71
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_compositing.py +0 -223
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_cond.py +0 -68
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_context_windows.py +0 -89
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_controlnet.py +0 -84
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_cosmos.py +0 -143
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_custom_sampler.py +0 -1016
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_dataset.py +0 -1432
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_differential_diffusion.py +0 -72
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_easycache.py +0 -501
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_edit_model.py +0 -38
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_eps.py +0 -169
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_flux.py +0 -248
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_freelunch.py +0 -113
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_fresca.py +0 -114
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_gits.py +0 -382
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_hidream.py +0 -73
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_hooks.py +0 -745
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_hunyuan.py +0 -419
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_hunyuan3d.py +0 -670
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_hypernetwork.py +0 -138
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_hypertile.py +0 -98
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_images.py +0 -674
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_ip2p.py +0 -63
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_latent.py +0 -412
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_load_3d.py +0 -118
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_lora_extract.py +0 -133
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_lotus.py +0 -39
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_lt.py +0 -526
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_lumina2.py +0 -127
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_mahiro.py +0 -57
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_mask.py +0 -415
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_mochi.py +0 -40
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_model_advanced.py +0 -329
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_model_downscale.py +0 -70
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_model_merging.py +0 -374
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_model_merging_model_specific.py +0 -356
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_model_patch.py +0 -343
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_morphology.py +0 -111
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_nop.py +0 -39
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_optimalsteps.py +0 -71
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_pag.py +0 -69
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_perpneg.py +0 -163
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_photomaker.py +0 -206
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_pixart.py +0 -38
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_post_processing.py +0 -255
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_preview_any.py +0 -43
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_primitive.py +0 -109
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_qwen.py +0 -117
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_rebatch.py +0 -153
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_rope.py +0 -47
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_sag.py +0 -195
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_sd3.py +0 -212
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_sdupscale.py +0 -62
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_slg.py +0 -176
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_stable3d.py +0 -166
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_stable_cascade.py +0 -162
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_string.py +0 -385
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_tcfg.py +0 -76
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_tomesd.py +0 -190
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_torch_compile.py +0 -39
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_train.py +0 -822
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_upscale_model.py +0 -109
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_video.py +0 -218
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_video_model.py +0 -161
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_wan.py +0 -1313
- horde_engine-2.22.2/hordelib/_comfyui/comfy_extras/nodes_webcam.py +0 -37
- horde_engine-2.22.2/hordelib/_comfyui/comfyui_version.py +0 -3
- horde_engine-2.22.2/hordelib/_comfyui/cuda_malloc.py +0 -92
- horde_engine-2.22.2/hordelib/_comfyui/custom_nodes/example_node.py.example +0 -130
- horde_engine-2.22.2/hordelib/_comfyui/custom_nodes/websocket_image_save.py +0 -44
- horde_engine-2.22.2/hordelib/_comfyui/execution.py +0 -1232
- horde_engine-2.22.2/hordelib/_comfyui/extra_model_paths.yaml +0 -4
- horde_engine-2.22.2/hordelib/_comfyui/extra_model_paths.yaml.example +0 -55
- horde_engine-2.22.2/hordelib/_comfyui/folder_paths.py +0 -496
- horde_engine-2.22.2/hordelib/_comfyui/hook_breaker_ac10a0.py +0 -17
- horde_engine-2.22.2/hordelib/_comfyui/input/example.png +0 -0
- horde_engine-2.22.2/hordelib/_comfyui/latent_preview.py +0 -127
- horde_engine-2.22.2/hordelib/_comfyui/main.py +0 -380
- horde_engine-2.22.2/hordelib/_comfyui/middleware/__init__.py +0 -1
- horde_engine-2.22.2/hordelib/_comfyui/middleware/cache_middleware.py +0 -53
- horde_engine-2.22.2/hordelib/_comfyui/models/audio_encoders/put_audio_encoder_models_here +0 -0
- horde_engine-2.22.2/hordelib/_comfyui/models/checkpoints/put_checkpoints_here +0 -0
- horde_engine-2.22.2/hordelib/_comfyui/models/clip/put_clip_or_text_encoder_models_here +0 -0
- horde_engine-2.22.2/hordelib/_comfyui/models/clip_vision/put_clip_vision_models_here +0 -0
- horde_engine-2.22.2/hordelib/_comfyui/models/configs/anything_v3.yaml +0 -73
- horde_engine-2.22.2/hordelib/_comfyui/models/configs/v1-inference.yaml +0 -70
- horde_engine-2.22.2/hordelib/_comfyui/models/configs/v1-inference_clip_skip_2.yaml +0 -73
- horde_engine-2.22.2/hordelib/_comfyui/models/configs/v1-inference_clip_skip_2_fp16.yaml +0 -74
- horde_engine-2.22.2/hordelib/_comfyui/models/configs/v1-inference_fp16.yaml +0 -71
- horde_engine-2.22.2/hordelib/_comfyui/models/configs/v1-inpainting-inference.yaml +0 -71
- horde_engine-2.22.2/hordelib/_comfyui/models/configs/v2-inference-v.yaml +0 -68
- horde_engine-2.22.2/hordelib/_comfyui/models/configs/v2-inference-v_fp32.yaml +0 -68
- horde_engine-2.22.2/hordelib/_comfyui/models/configs/v2-inference.yaml +0 -67
- horde_engine-2.22.2/hordelib/_comfyui/models/configs/v2-inference_fp32.yaml +0 -67
- horde_engine-2.22.2/hordelib/_comfyui/models/configs/v2-inpainting-inference.yaml +0 -158
- horde_engine-2.22.2/hordelib/_comfyui/models/controlnet/put_controlnets_and_t2i_here +0 -0
- horde_engine-2.22.2/hordelib/_comfyui/models/diffusers/put_diffusers_models_here +0 -0
- horde_engine-2.22.2/hordelib/_comfyui/models/diffusion_models/put_diffusion_model_files_here +0 -0
- horde_engine-2.22.2/hordelib/_comfyui/models/embeddings/put_embeddings_or_textual_inversion_concepts_here +0 -0
- horde_engine-2.22.2/hordelib/_comfyui/models/gligen/put_gligen_models_here +0 -0
- horde_engine-2.22.2/hordelib/_comfyui/models/hypernetworks/put_hypernetworks_here +0 -0
- horde_engine-2.22.2/hordelib/_comfyui/models/latent_upscale_models/put_latent_upscale_models_here +0 -0
- horde_engine-2.22.2/hordelib/_comfyui/models/loras/put_loras_here +0 -0
- horde_engine-2.22.2/hordelib/_comfyui/models/model_patches/put_model_patches_here +0 -0
- horde_engine-2.22.2/hordelib/_comfyui/models/photomaker/put_photomaker_models_here +0 -0
- horde_engine-2.22.2/hordelib/_comfyui/models/style_models/put_t2i_style_model_here +0 -0
- horde_engine-2.22.2/hordelib/_comfyui/models/text_encoders/put_text_encoder_files_here +0 -0
- horde_engine-2.22.2/hordelib/_comfyui/models/unet/put_unet_files_here +0 -0
- horde_engine-2.22.2/hordelib/_comfyui/models/upscale_models/put_esrgan_and_other_upscale_models_here +0 -0
- horde_engine-2.22.2/hordelib/_comfyui/models/vae/put_vae_here +0 -0
- horde_engine-2.22.2/hordelib/_comfyui/models/vae_approx/put_taesd_encoder_pth_and_taesd_decoder_pth_here +0 -0
- horde_engine-2.22.2/hordelib/_comfyui/new_updater.py +0 -35
- horde_engine-2.22.2/hordelib/_comfyui/node_helpers.py +0 -60
- horde_engine-2.22.2/hordelib/_comfyui/nodes.py +0 -2441
- horde_engine-2.22.2/hordelib/_comfyui/output/_output_images_will_be_put_here +0 -0
- horde_engine-2.22.2/hordelib/_comfyui/protocol.py +0 -7
- horde_engine-2.22.2/hordelib/_comfyui/pyproject.toml +0 -71
- horde_engine-2.22.2/hordelib/_comfyui/pytest.ini +0 -9
- horde_engine-2.22.2/hordelib/_comfyui/requirements.txt +0 -29
- horde_engine-2.22.2/hordelib/_comfyui/script_examples/basic_api_example.py +0 -123
- horde_engine-2.22.2/hordelib/_comfyui/script_examples/websockets_api_example.py +0 -167
- horde_engine-2.22.2/hordelib/_comfyui/script_examples/websockets_api_example_ws_images.py +0 -159
- horde_engine-2.22.2/hordelib/_comfyui/server.py +0 -1089
- horde_engine-2.22.2/hordelib/_comfyui/tests/README.md +0 -29
- horde_engine-2.22.2/hordelib/_comfyui/tests/__init__.py +0 -0
- horde_engine-2.22.2/hordelib/_comfyui/tests/compare/conftest.py +0 -41
- horde_engine-2.22.2/hordelib/_comfyui/tests/compare/test_quality.py +0 -195
- horde_engine-2.22.2/hordelib/_comfyui/tests/conftest.py +0 -42
- horde_engine-2.22.2/hordelib/_comfyui/tests/execution/extra_model_paths.yaml +0 -4
- horde_engine-2.22.2/hordelib/_comfyui/tests/execution/test_async_nodes.py +0 -427
- horde_engine-2.22.2/hordelib/_comfyui/tests/execution/test_execution.py +0 -879
- horde_engine-2.22.2/hordelib/_comfyui/tests/execution/test_progress_isolation.py +0 -233
- horde_engine-2.22.2/hordelib/_comfyui/tests/execution/test_public_api.py +0 -153
- horde_engine-2.22.2/hordelib/_comfyui/tests/execution/testing_nodes/testing-pack/__init__.py +0 -28
- horde_engine-2.22.2/hordelib/_comfyui/tests/execution/testing_nodes/testing-pack/api_test_nodes.py +0 -78
- horde_engine-2.22.2/hordelib/_comfyui/tests/execution/testing_nodes/testing-pack/async_test_nodes.py +0 -343
- horde_engine-2.22.2/hordelib/_comfyui/tests/execution/testing_nodes/testing-pack/conditions.py +0 -194
- horde_engine-2.22.2/hordelib/_comfyui/tests/execution/testing_nodes/testing-pack/flow_control.py +0 -173
- horde_engine-2.22.2/hordelib/_comfyui/tests/execution/testing_nodes/testing-pack/specific_tests.py +0 -519
- horde_engine-2.22.2/hordelib/_comfyui/tests/execution/testing_nodes/testing-pack/stubs.py +0 -129
- horde_engine-2.22.2/hordelib/_comfyui/tests/execution/testing_nodes/testing-pack/tools.py +0 -53
- horde_engine-2.22.2/hordelib/_comfyui/tests/execution/testing_nodes/testing-pack/util.py +0 -364
- horde_engine-2.22.2/hordelib/_comfyui/tests/inference/__init__.py +0 -0
- horde_engine-2.22.2/hordelib/_comfyui/tests/inference/graphs/default_graph_sdxl1_0.json +0 -144
- horde_engine-2.22.2/hordelib/_comfyui/tests/inference/test_inference.py +0 -237
- horde_engine-2.22.2/hordelib/_comfyui/tests-unit/README.md +0 -8
- horde_engine-2.22.2/hordelib/_comfyui/tests-unit/app_test/__init__.py +0 -0
- horde_engine-2.22.2/hordelib/_comfyui/tests-unit/app_test/custom_node_manager_test.py +0 -147
- horde_engine-2.22.2/hordelib/_comfyui/tests-unit/app_test/frontend_manager_test.py +0 -278
- horde_engine-2.22.2/hordelib/_comfyui/tests-unit/app_test/model_manager_test.py +0 -62
- horde_engine-2.22.2/hordelib/_comfyui/tests-unit/app_test/user_manager_system_user_test.py +0 -193
- horde_engine-2.22.2/hordelib/_comfyui/tests-unit/comfy_api_nodes_test/mapper_utils_test.py +0 -297
- horde_engine-2.22.2/hordelib/_comfyui/tests-unit/comfy_api_test/input_impl_test.py +0 -91
- horde_engine-2.22.2/hordelib/_comfyui/tests-unit/comfy_api_test/video_types_test.py +0 -239
- horde_engine-2.22.2/hordelib/_comfyui/tests-unit/comfy_extras_test/__init__.py +0 -0
- horde_engine-2.22.2/hordelib/_comfyui/tests-unit/comfy_extras_test/image_stitch_test.py +0 -243
- horde_engine-2.22.2/hordelib/_comfyui/tests-unit/comfy_quant/test_mixed_precision.py +0 -225
- horde_engine-2.22.2/hordelib/_comfyui/tests-unit/comfy_quant/test_quant_registry.py +0 -190
- horde_engine-2.22.2/hordelib/_comfyui/tests-unit/comfy_test/folder_path_test.py +0 -162
- horde_engine-2.22.2/hordelib/_comfyui/tests-unit/execution_test/validate_node_input_test.py +0 -119
- horde_engine-2.22.2/hordelib/_comfyui/tests-unit/feature_flags_test.py +0 -98
- horde_engine-2.22.2/hordelib/_comfyui/tests-unit/folder_paths_test/__init__.py +0 -0
- horde_engine-2.22.2/hordelib/_comfyui/tests-unit/folder_paths_test/filter_by_content_types_test.py +0 -66
- horde_engine-2.22.2/hordelib/_comfyui/tests-unit/folder_paths_test/misc_test.py +0 -51
- horde_engine-2.22.2/hordelib/_comfyui/tests-unit/folder_paths_test/system_user_test.py +0 -206
- horde_engine-2.22.2/hordelib/_comfyui/tests-unit/prompt_server_test/__init__.py +0 -0
- horde_engine-2.22.2/hordelib/_comfyui/tests-unit/prompt_server_test/system_user_endpoint_test.py +0 -375
- horde_engine-2.22.2/hordelib/_comfyui/tests-unit/prompt_server_test/user_manager_test.py +0 -289
- horde_engine-2.22.2/hordelib/_comfyui/tests-unit/requirements.txt +0 -4
- horde_engine-2.22.2/hordelib/_comfyui/tests-unit/server/utils/file_operations_test.py +0 -42
- horde_engine-2.22.2/hordelib/_comfyui/tests-unit/server_test/test_cache_control.py +0 -262
- horde_engine-2.22.2/hordelib/_comfyui/tests-unit/utils/extra_config_test.py +0 -303
- horde_engine-2.22.2/hordelib/_comfyui/tests-unit/utils/json_util_test.py +0 -71
- horde_engine-2.22.2/hordelib/_comfyui/tests-unit/websocket_feature_flags_test.py +0 -77
- horde_engine-2.22.2/hordelib/_comfyui/utils/__init__.py +0 -0
- horde_engine-2.22.2/hordelib/_comfyui/utils/extra_config.py +0 -34
- horde_engine-2.22.2/hordelib/_comfyui/utils/install_util.py +0 -18
- horde_engine-2.22.2/hordelib/_comfyui/utils/json_util.py +0 -26
- horde_engine-2.22.2/hordelib/_version.py +0 -34
- horde_engine-2.22.2/hordelib/config_path.py +0 -28
- horde_engine-2.22.2/hordelib/consts.py +0 -89
- horde_engine-2.22.2/hordelib/horde.py +0 -1705
- horde_engine-2.22.2/hordelib/install_comfy.py +0 -166
- horde_engine-2.22.2/hordelib/model_manager/base.py +0 -754
- horde_engine-2.22.2/hordelib/model_manager/codeformer.py +0 -11
- horde_engine-2.22.2/hordelib/model_manager/compvis.py +0 -50
- horde_engine-2.22.2/hordelib/model_manager/esrgan.py +0 -15
- horde_engine-2.22.2/hordelib/model_manager/gfpgan.py +0 -15
- horde_engine-2.22.2/hordelib/model_manager/lora.py +0 -1356
- horde_engine-2.22.2/hordelib/model_manager/miscellaneous.py +0 -15
- horde_engine-2.22.2/hordelib/model_manager/safety_checker.py +0 -15
- horde_engine-2.22.2/hordelib/model_manager/ti.py +0 -863
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/.gitignore +0 -4
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/LICENSE +0 -201
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/README.md +0 -91
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/__init__.py +0 -364
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/binary/__init__.py +0 -15
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/canny/__init__.py +0 -6
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/color/__init__.py +0 -20
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/hed/__init__.py +0 -150
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/__init__.py +0 -122
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/leres/LICENSE +0 -23
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/leres/Resnet.py +0 -199
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/leres/Resnext_torch.py +0 -248
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/leres/depthmap.py +0 -550
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/leres/multi_depth_model_woauxi.py +0 -33
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/leres/net_tools.py +0 -51
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/leres/network_auxi.py +0 -416
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/LICENSE +0 -19
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/models/__init__.py +0 -67
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/models/base_model.py +0 -244
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/models/base_model_hg.py +0 -58
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/models/networks.py +0 -623
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/models/pix2pix4depth_model.py +0 -155
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/options/__init__.py +0 -1
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/options/base_options.py +0 -156
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/options/test_options.py +0 -22
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/util/__init__.py +0 -1
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/util/get_data.py +0 -110
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/util/guidedfilter.py +0 -47
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/util/html.py +0 -86
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/util/image_pool.py +0 -54
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/util/util.py +0 -105
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/util/visualizer.py +0 -166
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/midas/__init__.py +0 -39
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/midas/api.py +0 -169
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/midas/midas/__init__.py +0 -0
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/midas/midas/base_model.py +0 -16
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/midas/midas/blocks.py +0 -341
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/midas/midas/dpt_depth.py +0 -108
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/midas/midas/midas_net.py +0 -76
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/midas/midas/midas_net_custom.py +0 -128
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/midas/midas/transforms.py +0 -234
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/midas/midas/vit.py +0 -491
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/midas/utils.py +0 -189
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/mlsd/__init__.py +0 -41
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/mlsd/models/mbv2_mlsd_large.py +0 -292
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/mlsd/models/mbv2_mlsd_tiny.py +0 -275
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/mlsd/utils.py +0 -581
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/mp_face_mesh/__init__.py +0 -156
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/mp_pose_hand/__init__.py +0 -106
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/openpose/__init__.py +0 -46
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/openpose/body.py +0 -207
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/openpose/hand.py +0 -71
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/openpose/model.py +0 -217
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/openpose/util.py +0 -164
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/pidinet/__init__.py +0 -41
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/pidinet/model.py +0 -638
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/requirements.txt +0 -13
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/__init__.py +0 -30
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/datasets/ade20k.py +0 -54
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/datasets/chase_db1.py +0 -59
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/datasets/cityscapes.py +0 -54
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/datasets/cityscapes_769x769.py +0 -35
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/datasets/drive.py +0 -59
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/datasets/hrf.py +0 -59
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/datasets/pascal_context.py +0 -60
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/datasets/pascal_context_59.py +0 -60
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/datasets/pascal_voc12.py +0 -57
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/datasets/pascal_voc12_aug.py +0 -9
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/datasets/stare.py +0 -59
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/default_runtime.py +0 -14
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/ann_r50-d8.py +0 -46
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/apcnet_r50-d8.py +0 -44
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/ccnet_r50-d8.py +0 -44
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/cgnet.py +0 -35
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/danet_r50-d8.py +0 -44
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/deeplabv3_r50-d8.py +0 -44
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/deeplabv3_unet_s5-d16.py +0 -50
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/deeplabv3plus_r50-d8.py +0 -46
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/dmnet_r50-d8.py +0 -44
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/dnl_r50-d8.py +0 -46
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/emanet_r50-d8.py +0 -47
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/encnet_r50-d8.py +0 -48
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/fast_scnn.py +0 -57
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/fcn_hr18.py +0 -52
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/fcn_r50-d8.py +0 -45
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/fcn_unet_s5-d16.py +0 -51
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/fpn_r50.py +0 -36
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/fpn_uniformer.py +0 -35
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/gcnet_r50-d8.py +0 -46
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/lraspp_m-v3-d8.py +0 -25
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/nonlocal_r50-d8.py +0 -46
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/ocrnet_hr18.py +0 -68
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/ocrnet_r50-d8.py +0 -47
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/pointrend_r50.py +0 -56
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/psanet_r50-d8.py +0 -49
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/pspnet_r50-d8.py +0 -44
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/pspnet_unet_s5-d16.py +0 -50
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/upernet_r50.py +0 -44
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/upernet_uniformer.py +0 -43
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/schedules/schedule_160k.py +0 -9
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/schedules/schedule_20k.py +0 -9
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/schedules/schedule_40k.py +0 -9
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/schedules/schedule_80k.py +0 -9
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/exp/upernet_global_small/config.py +0 -38
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/exp/upernet_global_small/run.sh +0 -10
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/exp/upernet_global_small/test.sh +0 -10
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/exp/upernet_global_small/test_config_g.py +0 -38
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/exp/upernet_global_small/test_config_h32.py +0 -39
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/exp/upernet_global_small/test_config_w32.py +0 -39
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/__init__.py +0 -15
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/arraymisc/__init__.py +0 -4
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/arraymisc/quantization.py +0 -55
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/__init__.py +0 -41
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/alexnet.py +0 -61
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/__init__.py +0 -35
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/activation.py +0 -92
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/context_block.py +0 -125
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/conv.py +0 -44
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/conv2d_adaptive_padding.py +0 -62
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/conv_module.py +0 -206
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/conv_ws.py +0 -148
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/depthwise_separable_conv_module.py +0 -96
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/drop.py +0 -64
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/generalized_attention.py +0 -412
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/hsigmoid.py +0 -34
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/hswish.py +0 -29
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/non_local.py +0 -306
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/norm.py +0 -147
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/padding.py +0 -36
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/plugin.py +0 -88
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/registry.py +0 -17
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/scale.py +0 -21
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/swish.py +0 -25
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/transformer.py +0 -605
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/upsample.py +0 -84
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/wrappers.py +0 -180
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/builder.py +0 -29
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/resnet.py +0 -316
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/utils/__init__.py +0 -19
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/utils/flops_counter.py +0 -578
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/utils/fuse_conv_bn.py +0 -59
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/utils/sync_bn.py +0 -59
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/utils/weight_init.py +0 -643
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/vgg.py +0 -175
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/engine/__init__.py +0 -8
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/engine/test.py +0 -195
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/fileio/__init__.py +0 -11
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/fileio/file_client.py +0 -1127
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/fileio/handlers/__init__.py +0 -7
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/fileio/handlers/base.py +0 -30
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/fileio/handlers/json_handler.py +0 -36
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/fileio/handlers/pickle_handler.py +0 -28
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/fileio/handlers/yaml_handler.py +0 -24
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/fileio/io.py +0 -151
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/fileio/parse.py +0 -97
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/image/__init__.py +0 -28
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/image/colorspace.py +0 -306
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/image/geometric.py +0 -728
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/image/io.py +0 -256
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/image/misc.py +0 -43
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/image/photometric.py +0 -428
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/model_zoo/deprecated.json +0 -6
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/model_zoo/mmcls.json +0 -31
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/model_zoo/open_mmlab.json +0 -50
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/__init__.py +0 -81
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/assign_score_withk.py +0 -123
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/ball_query.py +0 -55
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/bbox.py +0 -72
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/border_align.py +0 -109
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/box_iou_rotated.py +0 -45
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/carafe.py +0 -287
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/cc_attention.py +0 -81
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/contour_expand.py +0 -49
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/corner_pool.py +0 -161
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/correlation.py +0 -196
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/deform_conv.py +0 -406
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/deform_roi_pool.py +0 -204
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/deprecated_wrappers.py +0 -43
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/focal_loss.py +0 -212
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/furthest_point_sample.py +0 -83
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/fused_bias_leakyrelu.py +0 -268
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/gather_points.py +0 -57
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/group_points.py +0 -224
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/info.py +0 -36
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/iou3d.py +0 -85
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/knn.py +0 -77
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/masked_conv.py +0 -111
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/merge_cells.py +0 -149
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/modulated_deform_conv.py +0 -280
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/multi_scale_deform_attn.py +0 -348
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/nms.py +0 -383
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/pixel_group.py +0 -75
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/point_sample.py +0 -317
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/points_in_boxes.py +0 -133
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/points_sampler.py +0 -168
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/psa_mask.py +0 -92
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/roi_align.py +0 -223
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/roi_align_rotated.py +0 -177
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/roi_pool.py +0 -86
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/roiaware_pool3d.py +0 -100
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/roipoint_pool3d.py +0 -77
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/saconv.py +0 -128
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/scatter_points.py +0 -135
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/sync_bn.py +0 -288
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/three_interpolate.py +0 -68
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/three_nn.py +0 -51
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/tin_shift.py +0 -68
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/upfirdn2d.py +0 -320
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/voxelize.py +0 -132
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/parallel/__init__.py +0 -13
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/parallel/_functions.py +0 -79
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/parallel/collate.py +0 -84
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/parallel/data_container.py +0 -89
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/parallel/data_parallel.py +0 -89
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/parallel/distributed.py +0 -105
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/parallel/distributed_deprecated.py +0 -57
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/parallel/registry.py +0 -9
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/parallel/scatter_gather.py +0 -59
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/parallel/utils.py +0 -20
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/__init__.py +0 -47
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/base_module.py +0 -194
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/base_runner.py +0 -515
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/builder.py +0 -22
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/checkpoint.py +0 -670
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/default_constructor.py +0 -43
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/dist_utils.py +0 -164
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/epoch_based_runner.py +0 -172
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/fp16_utils.py +0 -388
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/__init__.py +0 -29
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/checkpoint.py +0 -156
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/closure.py +0 -11
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/ema.py +0 -89
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/evaluation.py +0 -492
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/hook.py +0 -101
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/iter_timer.py +0 -18
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/logger/__init__.py +0 -15
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/logger/base.py +0 -166
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/logger/dvclive.py +0 -58
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/logger/mlflow.py +0 -78
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/logger/neptune.py +0 -82
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/logger/pavi.py +0 -113
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/logger/tensorboard.py +0 -49
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/logger/text.py +0 -235
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/logger/wandb.py +0 -56
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/lr_updater.py +0 -615
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/memory.py +0 -25
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/momentum_updater.py +0 -421
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/optimizer.py +0 -457
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/profiler.py +0 -180
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/sampler_seed.py +0 -20
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/sync_buffer.py +0 -22
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/iter_based_runner.py +0 -256
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/log_buffer.py +0 -41
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/optimizer/__init__.py +0 -9
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/optimizer/builder.py +0 -41
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/optimizer/default_constructor.py +0 -245
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/priority.py +0 -60
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/utils.py +0 -92
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/__init__.py +0 -69
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/config.py +0 -649
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/env.py +0 -99
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/ext_loader.py +0 -71
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/logging.py +0 -110
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/misc.py +0 -377
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/parrots_jit.py +0 -41
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/parrots_wrapper.py +0 -107
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/path.py +0 -101
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/progressbar.py +0 -208
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/registry.py +0 -304
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/testing.py +0 -140
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/timer.py +0 -117
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/trace.py +0 -24
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/version_utils.py +0 -90
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/version.py +0 -35
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/video/__init__.py +0 -11
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/video/io.py +0 -310
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/video/optflow.py +0 -248
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/video/processing.py +0 -128
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/visualization/__init__.py +0 -9
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/visualization/color.py +0 -52
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/visualization/image.py +0 -144
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/visualization/optflow.py +0 -109
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv_custom/__init__.py +0 -5
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv_custom/checkpoint.py +0 -477
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/apis/__init__.py +0 -9
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/apis/inference.py +0 -126
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/apis/test.py +0 -216
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/apis/train.py +0 -109
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/core/__init__.py +0 -3
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/core/evaluation/__init__.py +0 -8
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/core/evaluation/class_names.py +0 -458
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/core/evaluation/eval_hooks.py +0 -108
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/core/evaluation/metrics.py +0 -296
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/core/seg/__init__.py +0 -4
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/core/seg/builder.py +0 -9
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/core/seg/sampler/__init__.py +0 -4
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/core/seg/sampler/base_pixel_sampler.py +0 -12
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/core/seg/sampler/ohem_pixel_sampler.py +0 -76
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/core/utils/__init__.py +0 -3
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/core/utils/misc.py +0 -17
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/__init__.py +0 -19
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/ade.py +0 -84
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/builder.py +0 -175
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/chase_db1.py +0 -27
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/cityscapes.py +0 -240
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/custom.py +0 -372
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/dataset_wrappers.py +0 -50
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/drive.py +0 -27
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/hrf.py +0 -27
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/pascal_context.py +0 -103
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/pipelines/__init__.py +0 -16
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/pipelines/compose.py +0 -51
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/pipelines/formating.py +0 -293
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/pipelines/loading.py +0 -144
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/pipelines/test_time_aug.py +0 -118
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/pipelines/transforms.py +0 -838
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/stare.py +0 -27
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/voc.py +0 -29
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/__init__.py +0 -12
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/backbones/__init__.py +0 -17
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/backbones/cgnet.py +0 -360
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/backbones/fast_scnn.py +0 -353
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/backbones/hrnet.py +0 -535
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/backbones/mobilenet_v2.py +0 -182
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/backbones/mobilenet_v3.py +0 -266
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/backbones/resnest.py +0 -299
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/backbones/resnet.py +0 -649
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/backbones/resnext.py +0 -124
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/backbones/unet.py +0 -450
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/backbones/uniformer.py +0 -552
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/backbones/vit.py +0 -442
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/builder.py +0 -44
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/__init__.py +0 -28
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/ann_head.py +0 -259
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/apc_head.py +0 -141
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/aspp_head.py +0 -106
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/cascade_decode_head.py +0 -57
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/cc_head.py +0 -41
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/da_head.py +0 -173
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/decode_head.py +0 -226
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/dm_head.py +0 -136
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/dnl_head.py +0 -125
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/ema_head.py +0 -155
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/enc_head.py +0 -174
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/fcn_head.py +0 -81
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/fpn_head.py +0 -60
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/gc_head.py +0 -41
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/lraspp_head.py +0 -77
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/nl_head.py +0 -46
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/ocr_head.py +0 -124
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/point_head.py +0 -312
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/psa_head.py +0 -186
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/psp_head.py +0 -101
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/sep_aspp_head.py +0 -82
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/sep_fcn_head.py +0 -54
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/uper_head.py +0 -118
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/losses/__init__.py +0 -12
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/losses/accuracy.py +0 -78
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/losses/cross_entropy_loss.py +0 -198
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/losses/dice_loss.py +0 -119
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/losses/lovasz_loss.py +0 -303
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/losses/utils.py +0 -116
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/necks/__init__.py +0 -4
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/necks/fpn.py +0 -210
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/necks/multilevel_neck.py +0 -53
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/segmentors/__init__.py +0 -5
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/segmentors/base.py +0 -255
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/segmentors/cascade_encoder_decoder.py +0 -95
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/segmentors/encoder_decoder.py +0 -275
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/utils/__init__.py +0 -13
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/utils/drop.py +0 -31
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/utils/inverted_residual.py +0 -217
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/utils/make_divisible.py +0 -27
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/utils/res_layer.py +0 -95
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/utils/se_layer.py +0 -60
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/utils/self_attention_block.py +0 -161
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/utils/up_conv_block.py +0 -106
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/utils/weight_init.py +0 -62
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/ops/__init__.py +0 -4
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/ops/encoding.py +0 -74
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/ops/wrappers.py +0 -50
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/utils/__init__.py +0 -4
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/utils/collect_env.py +0 -17
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/utils/logger.py +0 -27
- horde_engine-2.22.2/hordelib/nodes/comfy_controlnet_preprocessors/util.py +0 -161
- horde_engine-2.22.2/hordelib/nodes/comfy_qr/LICENSE +0 -661
- horde_engine-2.22.2/hordelib/nodes/comfy_qr/README.md +0 -146
- horde_engine-2.22.2/hordelib/nodes/comfy_qr/__init__.py +0 -3
- horde_engine-2.22.2/hordelib/nodes/comfy_qr/qr_nodes.py +0 -645
- horde_engine-2.22.2/hordelib/nodes/comfy_qr/requirements.txt +0 -1
- horde_engine-2.22.2/hordelib/nodes/comfyui_layerdiffuse/lib_layerdiffusion/__init__.py +0 -0
- horde_engine-2.22.2/hordelib/nodes/facerestore_cf/LICENSE +0 -674
- horde_engine-2.22.2/hordelib/nodes/facerestore_cf/basicsr/ops/__init__.py +0 -0
- horde_engine-2.22.2/hordelib/nodes/facerestore_cf/facelib/__init__.py +0 -0
- horde_engine-2.22.2/hordelib/nodes/facerestore_cf/facelib/detection/yolov5face/__init__.py +0 -0
- horde_engine-2.22.2/hordelib/nodes/facerestore_cf/facelib/detection/yolov5face/models/__init__.py +0 -0
- horde_engine-2.22.2/hordelib/nodes/facerestore_cf/facelib/detection/yolov5face/utils/__init__.py +0 -0
- horde_engine-2.22.2/hordelib/nodes/facerestore_cf/r_chainner/__init__.py +0 -0
- horde_engine-2.22.2/hordelib/nodes/node_image_output.py +0 -56
- horde_engine-2.22.2/hordelib/pipelines/pipeline_controlnet_annotator.json +0 -144
- horde_engine-2.22.2/hordelib/pipelines/pipeline_zimage.json +0 -141
- horde_engine-2.22.2/hordelib/preload.py +0 -53
- horde_engine-2.22.2/hordelib/pyinstaller_hooks/__init__.py +0 -0
- horde_engine-2.22.2/hordelib/shared_model_manager.py +0 -228
- horde_engine-2.22.2/hordelib/utils/__init__.py +0 -0
- horde_engine-2.22.2/mypy.ini +0 -48
- horde_engine-2.22.2/pyinstaller.py +0 -21
- horde_engine-2.22.2/pyinstaller_test_entrypoint.py +0 -36
- horde_engine-2.22.2/pyproject.toml +0 -128
- horde_engine-2.22.2/requirements.dev.txt +0 -24
- horde_engine-2.22.2/requirements.txt +0 -65
- horde_engine-2.22.2/setup.cfg +0 -9
- horde_engine-2.22.2/tests/__init__.py +0 -0
- horde_engine-2.22.2/tests/conftest.py +0 -561
- horde_engine-2.22.2/tests/meta/__init__.py +0 -0
- horde_engine-2.22.2/tests/meta/test_packaging_errors.py +0 -9
- horde_engine-2.22.2/tests/model_managers/__init__.py +0 -0
- horde_engine-2.22.2/tests/model_managers/test_mm_compvis.py +0 -14
- horde_engine-2.22.2/tests/model_managers/test_mm_lora.py +0 -288
- horde_engine-2.22.2/tests/model_managers/test_mm_safety_checker.py +0 -9
- horde_engine-2.22.2/tests/model_managers/test_mm_ti.py +0 -48
- horde_engine-2.22.2/tests/model_managers/test_shared_model_manager.py +0 -203
- horde_engine-2.22.2/tests/test_comfy.py +0 -180
- horde_engine-2.22.2/tests/test_cuda.py +0 -13
- horde_engine-2.22.2/tests/test_dynamic_prompt.py +0 -33
- horde_engine-2.22.2/tests/test_horde_controlnet_annotator.py +0 -63
- horde_engine-2.22.2/tests/test_horde_inference.py +0 -543
- horde_engine-2.22.2/tests/test_horde_inference_cascade.py +0 -402
- horde_engine-2.22.2/tests/test_horde_inference_controlnet.py +0 -282
- horde_engine-2.22.2/tests/test_horde_inference_custom_model.py +0 -54
- horde_engine-2.22.2/tests/test_horde_inference_flux.py +0 -238
- horde_engine-2.22.2/tests/test_horde_inference_img2img.py +0 -560
- horde_engine-2.22.2/tests/test_horde_inference_layerdiffusion.py +0 -136
- horde_engine-2.22.2/tests/test_horde_inference_painting.py +0 -484
- horde_engine-2.22.2/tests/test_horde_inference_qr_code.py +0 -415
- horde_engine-2.22.2/tests/test_horde_inference_qwen.py +0 -52
- horde_engine-2.22.2/tests/test_horde_inference_z-model.py +0 -51
- horde_engine-2.22.2/tests/test_horde_lcm.py +0 -209
- horde_engine-2.22.2/tests/test_horde_lora.py +0 -1065
- horde_engine-2.22.2/tests/test_horde_pp.py +0 -196
- horde_engine-2.22.2/tests/test_horde_samplers.py +0 -186
- horde_engine-2.22.2/tests/test_horde_ti.py +0 -171
- horde_engine-2.22.2/tests/test_image_metadata.py +0 -44
- horde_engine-2.22.2/tests/test_inference.py +0 -149
- horde_engine-2.22.2/tests/test_initialisation.py +0 -19
- horde_engine-2.22.2/tests/test_internal_comfyui_failures.py +0 -54
- horde_engine-2.22.2/tests/test_payload_mapping.py +0 -47
- horde_engine-2.22.2/tests/test_safety_checker.py +0 -8
- horde_engine-2.22.2/tests/test_utils.py +0 -208
- horde_engine-2.22.2/tests/testing_shared_classes.py +0 -20
- horde_engine-2.22.2/tests/testing_shared_functions.py +0 -257
- horde_engine-2.22.2/tox.ini +0 -91
- {horde_engine-2.22.2 → horde_engine-3.1.0}/LICENSE +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/__pyinstaller.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/exceptions.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/model_database/db_dep.json +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/model_database/db_embeds.json +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/model_database/diffusers.json +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/model_database/med_config.json +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/model_manager/__init__.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/__init__.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/comfyui_layerdiffuse/LICENSE +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/comfyui_layerdiffuse/README.md +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/comfyui_layerdiffuse/__init__.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/comfyui_layerdiffuse/examples/layer_diffusion_cond_example.json +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/comfyui_layerdiffuse/examples/layer_diffusion_cond_fg_all.json +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/comfyui_layerdiffuse/examples/layer_diffusion_cond_joint_bg.json +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/comfyui_layerdiffuse/examples/layer_diffusion_cond_joint_fg.json +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/comfyui_layerdiffuse/examples/layer_diffusion_diff_bg.json +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/comfyui_layerdiffuse/examples/layer_diffusion_diff_bg_stop_at.json +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/comfyui_layerdiffuse/examples/layer_diffusion_diff_fg.json +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/comfyui_layerdiffuse/examples/layer_diffusion_fg_example.json +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/comfyui_layerdiffuse/examples/layer_diffusion_fg_example_rgba.json +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/comfyui_layerdiffuse/examples/layer_diffusion_joint.json +0 -0
- {horde_engine-2.22.2/hordelib/_comfyui/api_server → horde_engine-3.1.0/hordelib/nodes/comfyui_layerdiffuse/lib_layerdiffusion}/__init__.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/comfyui_layerdiffuse/lib_layerdiffusion/enums.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/comfyui_layerdiffuse/pyproject.toml +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/comfyui_layerdiffuse/requirements.txt +0 -0
- {horde_engine-2.22.2/hordelib/_comfyui → horde_engine-3.1.0/hordelib/nodes/facerestore_cf}/LICENSE +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/README.md +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/VERSION +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/__init__.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/archs/__init__.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/archs/arcface_arch.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/archs/arch_util.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/archs/codeformer_arch.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/archs/rrdbnet_arch.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/archs/vgg_arch.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/archs/vqgan_arch.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/data/__init__.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/data/data_sampler.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/data/data_util.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/data/prefetch_dataloader.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/data/transforms.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/losses/__init__.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/losses/loss_util.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/losses/losses.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/metrics/__init__.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/metrics/metric_util.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/metrics/psnr_ssim.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/models/__init__.py +0 -0
- {horde_engine-2.22.2/hordelib/_comfyui/api_server/routes → horde_engine-3.1.0/hordelib/nodes/facerestore_cf/basicsr/ops}/__init__.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/ops/dcn/__init__.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/ops/dcn/deform_conv.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/ops/dcn/src/deform_conv_cuda.cpp +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/ops/dcn/src/deform_conv_cuda_kernel.cu +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/ops/dcn/src/deform_conv_ext.cpp +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/ops/fused_act/__init__.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/ops/fused_act/fused_act.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/ops/fused_act/src/fused_bias_act.cpp +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/ops/fused_act/src/fused_bias_act_kernel.cu +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/ops/upfirdn2d/__init__.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/ops/upfirdn2d/src/upfirdn2d.cpp +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/ops/upfirdn2d/src/upfirdn2d_kernel.cu +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/ops/upfirdn2d/upfirdn2d.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/setup.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/train.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/utils/__init__.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/utils/dist_util.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/utils/download_util.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/utils/file_client.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/utils/img_util.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/utils/lmdb_util.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/utils/logger.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/utils/matlab_functions.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/utils/misc.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/utils/options.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/utils/realesrgan_utils.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/utils/registry.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/basicsr/version.py +0 -0
- {horde_engine-2.22.2/hordelib/_comfyui/api_server/routes/internal → horde_engine-3.1.0/hordelib/nodes/facerestore_cf/facelib}/__init__.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/facelib/detection/__init__.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/facelib/detection/align_trans.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/facelib/detection/matlab_cp2tform.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/facelib/detection/retinaface/retinaface.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/facelib/detection/retinaface/retinaface_net.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/facelib/detection/retinaface/retinaface_utils.py +0 -0
- {horde_engine-2.22.2/hordelib/_comfyui/api_server/services → horde_engine-3.1.0/hordelib/nodes/facerestore_cf/facelib/detection/yolov5face}/__init__.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/facelib/detection/yolov5face/face_detector.py +0 -0
- {horde_engine-2.22.2/hordelib/_comfyui/app → horde_engine-3.1.0/hordelib/nodes/facerestore_cf/facelib/detection/yolov5face/models}/__init__.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/facelib/detection/yolov5face/models/common.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/facelib/detection/yolov5face/models/experimental.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/facelib/detection/yolov5face/models/yolo.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/facelib/detection/yolov5face/models/yolov5l.yaml +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/facelib/detection/yolov5face/models/yolov5n.yaml +0 -0
- {horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/mmaudio/vae → horde_engine-3.1.0/hordelib/nodes/facerestore_cf/facelib/detection/yolov5face/utils}/__init__.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/facelib/detection/yolov5face/utils/autoanchor.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/facelib/detection/yolov5face/utils/datasets.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/facelib/detection/yolov5face/utils/extract_ckpt.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/facelib/detection/yolov5face/utils/general.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/facelib/detection/yolov5face/utils/torch_utils.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/facelib/parsing/__init__.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/facelib/parsing/bisenet.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/facelib/parsing/parsenet.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/facelib/parsing/resnet.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/facelib/utils/__init__.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/facelib/utils/face_restoration_helper.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/facelib/utils/face_utils.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/r_chainner/README.md +0 -0
- {horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/modules/diffusionmodules → horde_engine-3.1.0/hordelib/nodes/facerestore_cf/r_chainner}/__init__.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/r_chainner/gfpganv1_clean_arch.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/r_chainner/model_loading.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/r_chainner/stylegan2_clean_arch.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/facerestore_cf/r_chainner/types.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/nodes/node_upscale_model_loader.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipeline_designs/pipeline_controlnet.json +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipeline_designs/pipeline_controlnet_annotator.json +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipeline_designs/pipeline_controlnet_hires_fix.json +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipeline_designs/pipeline_flux.json +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipeline_designs/pipeline_image_facefix.json +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipeline_designs/pipeline_image_upscale.json +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipeline_designs/pipeline_qr_code.json +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipeline_designs/pipeline_qwen.json +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipeline_designs/pipeline_stable_cascade.json +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipeline_designs/pipeline_stable_cascade_2pass.json +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipeline_designs/pipeline_stable_cascade_remix.json +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipeline_designs/pipeline_stable_diffusion.json +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipeline_designs/pipeline_stable_diffusion_hires_fix.json +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipeline_designs/pipeline_stable_diffusion_img2img_mask.json +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipeline_designs/pipeline_stable_diffusion_paint.json +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipelines/pipeline_flux.json +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipelines/pipeline_image_facefix.json +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipelines/pipeline_image_upscale.json +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipelines/pipeline_qr_code.json +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipelines/pipeline_stable_cascade.json +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipelines/pipeline_stable_cascade_2pass.json +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipelines/pipeline_stable_cascade_remix.json +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipelines/pipeline_stable_diffusion.json +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipelines/pipeline_stable_diffusion_hires_fix.json +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipelines/pipeline_stable_diffusion_img2img_mask.json +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pipelines/pipeline_stable_diffusion_paint.json +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/py.typed +0 -0
- {horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/modules/distributions → horde_engine-3.1.0/hordelib/pyinstaller_hooks}/__init__.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/pyinstaller_hooks/hook-hordelib.horde.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/safety.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/safety_checker.py +0 -0
- {horde_engine-2.22.2/hordelib/_comfyui/comfy/ldm/modules/encoders → horde_engine-3.1.0/hordelib/utils}/__init__.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/utils/dynamicprompt.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/utils/gpuinfo.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/utils/sanitizer.py +0 -0
- {horde_engine-2.22.2 → horde_engine-3.1.0}/hordelib/utils/switch.py +0 -0
|
@@ -83,7 +83,7 @@ profile_default/
|
|
|
83
83
|
ipython_config.py
|
|
84
84
|
|
|
85
85
|
# pyenv
|
|
86
|
-
.python-version
|
|
86
|
+
# .python-version # this competes the with uv convention for specifying the python version
|
|
87
87
|
|
|
88
88
|
# pipenv
|
|
89
89
|
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: horde-engine
|
|
3
|
-
Version:
|
|
3
|
+
Version: 3.1.0
|
|
4
4
|
Summary: A wrapper around ComfyUI to allow use by AI Horde.
|
|
5
|
+
Project-URL: Homepage, https://github.com/Haidra-Org/hordelib
|
|
6
|
+
Project-URL: Bug Tracker, https://github.com/Haidra-Org/hordelib/issues
|
|
7
|
+
Project-URL: Changelog, https://github.com/Haidra-Org/hordelib/releases
|
|
5
8
|
Author-email: tazlin <tazlin.on.github@gmail.com>, db0 <mail@dbzer0.com>, Jug <jugdev@proton.me>
|
|
6
9
|
License: GNU AFFERO GENERAL PUBLIC LICENSE
|
|
7
10
|
Version 3, 19 November 2007
|
|
@@ -664,78 +667,87 @@ License: GNU AFFERO GENERAL PUBLIC LICENSE
|
|
|
664
667
|
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
|
665
668
|
For more information on this, and how to apply and follow the GNU AGPL, see
|
|
666
669
|
<https://www.gnu.org/licenses/>.
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
Project-URL: Bug Tracker, https://github.com/Haidra-Org/hordelib/issues
|
|
670
|
-
Project-URL: Changelog, https://github.com/Haidra-Org/hordelib/blob/releases/CHANGELOG.md
|
|
671
|
-
Classifier: Programming Language :: Python :: 3
|
|
670
|
+
License-File: LICENSE
|
|
671
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
672
672
|
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
|
|
673
673
|
Classifier: Operating System :: OS Independent
|
|
674
|
-
Classifier:
|
|
675
|
-
Requires-Python: >=3.
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
License-File: CHANGELOG.md
|
|
679
|
-
Requires-Dist: horde_sdk>=0.15.0
|
|
680
|
-
Requires-Dist: horde_model_reference>=0.9.1
|
|
681
|
-
Requires-Dist: numpy==1.26.4
|
|
682
|
-
Requires-Dist: torch>=2.4.1
|
|
683
|
-
Requires-Dist: torchvision
|
|
684
|
-
Requires-Dist: torchdiffeq
|
|
685
|
-
Requires-Dist: torchsde
|
|
686
|
-
Requires-Dist: einops
|
|
687
|
-
Requires-Dist: open-clip-torch
|
|
688
|
-
Requires-Dist: transformers>=4.37.2
|
|
689
|
-
Requires-Dist: tokenizers>=0.13.3
|
|
690
|
-
Requires-Dist: sentencepiece
|
|
691
|
-
Requires-Dist: safetensors>=0.4.2
|
|
692
|
-
Requires-Dist: pytorch_lightning
|
|
693
|
-
Requires-Dist: pynvml
|
|
674
|
+
Classifier: Programming Language :: Python :: 3
|
|
675
|
+
Requires-Python: >=3.12
|
|
676
|
+
Requires-Dist: accelerate>=1.11.0
|
|
677
|
+
Requires-Dist: addict>=2.4.0
|
|
694
678
|
Requires-Dist: aiohttp>=3.11.8
|
|
695
|
-
Requires-Dist:
|
|
696
|
-
Requires-Dist:
|
|
697
|
-
Requires-Dist:
|
|
698
|
-
Requires-Dist:
|
|
699
|
-
Requires-Dist:
|
|
700
|
-
Requires-Dist:
|
|
679
|
+
Requires-Dist: alembic
|
|
680
|
+
Requires-Dist: av>=16.0.0
|
|
681
|
+
Requires-Dist: blake3
|
|
682
|
+
Requires-Dist: clip-anytorch>=2.6.0
|
|
683
|
+
Requires-Dist: comfy-aimdo==0.4.9
|
|
684
|
+
Requires-Dist: comfy-kitchen==0.2.10
|
|
685
|
+
Requires-Dist: comfyui-embedded-docs==0.5.3
|
|
686
|
+
Requires-Dist: comfyui-frontend-package==1.45.15
|
|
687
|
+
Requires-Dist: comfyui-workflow-templates==0.9.98
|
|
701
688
|
Requires-Dist: diffusers>=0.25.0
|
|
702
|
-
Requires-Dist:
|
|
689
|
+
Requires-Dist: distro>=1.9.0
|
|
690
|
+
Requires-Dist: einops
|
|
691
|
+
Requires-Dist: fairscale>=0.4.13
|
|
692
|
+
Requires-Dist: filelock
|
|
693
|
+
Requires-Dist: fuzzywuzzy>=0.18.0
|
|
694
|
+
Requires-Dist: gitpython>=3.1.45
|
|
695
|
+
Requires-Dist: horde-model-reference<6.0.0,>=5.1.1
|
|
696
|
+
Requires-Dist: horde-sdk>=0.20.1
|
|
697
|
+
Requires-Dist: kornia>=0.7.1
|
|
698
|
+
Requires-Dist: logfire[system-metrics]==4.14.2
|
|
699
|
+
Requires-Dist: loguru>=0.7.3
|
|
700
|
+
Requires-Dist: lpips>=0.1.4
|
|
701
|
+
Requires-Dist: matplotlib>=3.10.9
|
|
702
|
+
Requires-Dist: numpy>=1.25.0
|
|
703
|
+
Requires-Dist: omegaconf>=2.3.0
|
|
704
|
+
Requires-Dist: open-clip-torch>=2.32.0
|
|
705
|
+
Requires-Dist: opencv-contrib-python>=4.11.0.86
|
|
706
|
+
Requires-Dist: opencv-python>=4.11.0.86
|
|
707
|
+
Requires-Dist: opentelemetry-instrumentation-aiohttp-client>=0.59b0
|
|
708
|
+
Requires-Dist: opentelemetry-instrumentation-requests>=0.59b0
|
|
709
|
+
Requires-Dist: pillow
|
|
703
710
|
Requires-Dist: psutil
|
|
704
|
-
Requires-Dist: typing-extensions
|
|
705
|
-
Requires-Dist: distro
|
|
706
|
-
Requires-Dist: python-dotenv
|
|
707
|
-
Requires-Dist: strenum
|
|
708
|
-
Requires-Dist: rembg[cpu]
|
|
709
|
-
Requires-Dist: opencv-python
|
|
710
|
-
Requires-Dist: opencv-contrib-python
|
|
711
|
-
Requires-Dist: opencv-python
|
|
712
|
-
Requires-Dist: timm==0.9.16
|
|
713
|
-
Requires-Dist: torchvision
|
|
714
|
-
Requires-Dist: scipy
|
|
715
|
-
Requires-Dist: addict
|
|
716
|
-
Requires-Dist: fairscale
|
|
717
|
-
Requires-Dist: scikit-image
|
|
718
|
-
Requires-Dist: mediapipe==0.10.21
|
|
719
|
-
Requires-Dist: unidecode
|
|
720
|
-
Requires-Dist: fuzzywuzzy
|
|
721
|
-
Requires-Dist: strenum
|
|
722
|
-
Requires-Dist: kornia
|
|
723
|
-
Requires-Dist: qrcode==7.4.2
|
|
724
|
-
Requires-Dist: spandrel
|
|
725
|
-
Requires-Dist: spandrel_extra_arches
|
|
726
|
-
Requires-Dist: soundfile
|
|
727
|
-
Requires-Dist: lpips
|
|
728
|
-
Requires-Dist: av>=14.2.0
|
|
729
|
-
Requires-Dist: pydantic~=2.0
|
|
730
711
|
Requires-Dist: pydantic-settings~=2.0
|
|
731
|
-
Requires-Dist:
|
|
732
|
-
Requires-Dist:
|
|
712
|
+
Requires-Dist: pydantic~=2.0
|
|
713
|
+
Requires-Dist: pynvml>=13.0.1
|
|
714
|
+
Requires-Dist: python-dotenv>=1.2.1
|
|
715
|
+
Requires-Dist: pytorch-lightning>=2.5.6
|
|
716
|
+
Requires-Dist: pyyaml
|
|
717
|
+
Requires-Dist: qrcode==7.4.2
|
|
718
|
+
Requires-Dist: rembg[cpu]>=2.0.67
|
|
719
|
+
Requires-Dist: requests
|
|
720
|
+
Requires-Dist: safetensors>=0.4.2
|
|
721
|
+
Requires-Dist: scikit-image>=0.25.2
|
|
722
|
+
Requires-Dist: scipy
|
|
723
|
+
Requires-Dist: sentencepiece
|
|
724
|
+
Requires-Dist: simpleeval>=1.0.0
|
|
725
|
+
Requires-Dist: soundfile>=0.13.1
|
|
726
|
+
Requires-Dist: spandrel-extra-arches>=0.2.0
|
|
727
|
+
Requires-Dist: spandrel>=0.4.1
|
|
728
|
+
Requires-Dist: sqlalchemy>=2.0.0
|
|
729
|
+
Requires-Dist: strenum>=0.4.15
|
|
730
|
+
Requires-Dist: timm==0.9.16
|
|
731
|
+
Requires-Dist: tokenizers>=0.13.3
|
|
732
|
+
Requires-Dist: torchaudio<2.13,>=2.9.0
|
|
733
|
+
Requires-Dist: torchdiffeq>=0.2.5
|
|
734
|
+
Requires-Dist: torchsde
|
|
735
|
+
Requires-Dist: torchvision<0.28,>=0.24.0
|
|
733
736
|
Requires-Dist: tqdm
|
|
737
|
+
Requires-Dist: transformers>=4.50.3
|
|
738
|
+
Requires-Dist: typing-extensions>=4.15.0
|
|
739
|
+
Requires-Dist: unidecode>=1.4.0
|
|
740
|
+
Requires-Dist: yapf>=0.43.0
|
|
734
741
|
Requires-Dist: yarl>=1.18.0
|
|
735
|
-
|
|
736
|
-
Requires-Dist:
|
|
737
|
-
|
|
738
|
-
|
|
742
|
+
Provides-Extra: cpu
|
|
743
|
+
Requires-Dist: torch; extra == 'cpu'
|
|
744
|
+
Provides-Extra: cu126
|
|
745
|
+
Requires-Dist: torch; extra == 'cu126'
|
|
746
|
+
Provides-Extra: cu130
|
|
747
|
+
Requires-Dist: torch; extra == 'cu130'
|
|
748
|
+
Provides-Extra: cu132
|
|
749
|
+
Requires-Dist: torch; extra == 'cu132'
|
|
750
|
+
Description-Content-Type: text/markdown
|
|
739
751
|
|
|
740
752
|
# horde-engine
|
|
741
753
|
|
|
@@ -749,268 +761,283 @@ Dynamic: license-file
|
|
|
749
761
|
[![All Models][all-model-images]][all-model-url]
|
|
750
762
|
[![Release Changelog][changelog-image]][changelog-url]
|
|
751
763
|
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
`horde-engine` is a wrapper around [ComfyUI](https://github.com/comfyanonymous/ComfyUI) primarily to enable the [AI Horde](https://aihorde.net/) to run inference pipelines designed visually in the ComfyUI GUI.
|
|
755
|
-
|
|
756
|
-
The developers of `horde-engine` can be found in the AI Horde Discord server: [https://discord.gg/3DxrhksKzn](https://discord.gg/3DxrhksKzn)
|
|
757
|
-
|
|
758
|
-
Note that `horde-engine` (previously known as `hordelib`) has been the default inference backend library of the [AI Horde](https://aihorde.net/) since `hordelib` v1.0.0.
|
|
759
|
-
|
|
760
|
-
## Purpose
|
|
761
|
-
|
|
762
|
-
The goal here is to be able to design inference pipelines in the excellent ComfyUI, and then call those inference pipelines programmatically. Whilst providing features that maintain compatibility with the existing horde implementation.
|
|
763
|
-
|
|
764
|
-
## Installation
|
|
765
|
-
|
|
766
|
-
If being installed from pypi, use a requirements file of the form:
|
|
767
|
-
```
|
|
768
|
-
--extra-index-url https://download.pytorch.org/whl/cu121
|
|
769
|
-
hordelib
|
|
764
|
+
`horde-engine` wraps a pinned commit of [ComfyUI](https://github.com/comfyanonymous/ComfyUI) so the [AI Horde](https://aihorde.net/) can run ComfyUI-designed inference pipelines programmatically. It is the default inference backend for AI Horde since v1.0.0.
|
|
770
765
|
|
|
771
|
-
|
|
772
|
-
```
|
|
766
|
+
Python `>=3.12`. GPU/CUDA required. The package name on PyPI is `horde-engine`; the Python module is `hordelib`.
|
|
773
767
|
|
|
774
|
-
|
|
768
|
+
Community: [AI Horde Discord](https://discord.gg/3DxrhksKzn).
|
|
775
769
|
|
|
776
|
-
|
|
770
|
+
---
|
|
777
771
|
|
|
778
|
-
|
|
779
|
-
```bash
|
|
780
|
-
sudo mount -o remount,size=16G /tmp
|
|
781
|
-
```
|
|
782
|
-
If you only have 16GB of RAM you will also need swap space. So if you typically run without swap, add some. You won't be able to run this library without it.
|
|
772
|
+
## Quick start
|
|
783
773
|
|
|
784
|
-
|
|
774
|
+
1. Install `horde-engine` together with a PyTorch build for your hardware (see
|
|
775
|
+
[Choosing a PyTorch build](#choosing-a-pytorch-build)). For NVIDIA:
|
|
776
|
+
```
|
|
777
|
+
# CUDA 13+ driver -> torch 2.12.0 (the default line):
|
|
778
|
+
pip install --extra-index-url https://download.pytorch.org/whl/cu130 horde-engine
|
|
779
|
+
# CUDA 12.x driver -> the newest CUDA 12.8 build is torch 2.11.0:
|
|
780
|
+
pip install --extra-index-url https://download.pytorch.org/whl/cu128 horde-engine "torch==2.11.0"
|
|
781
|
+
```
|
|
785
782
|
|
|
786
|
-
|
|
783
|
+
2. Set `AIWORKER_CACHE_HOME` to a model directory (see [Model directory layout](#model-directory-layout)).
|
|
787
784
|
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
785
|
+
3. Call `hordelib.initialise()` once per process, then use the public API:
|
|
786
|
+
```python
|
|
787
|
+
import hordelib
|
|
788
|
+
hordelib.initialise()
|
|
792
789
|
|
|
793
|
-
import
|
|
790
|
+
from hordelib.api import HordeLib, ImageGenPayload
|
|
794
791
|
|
|
795
|
-
|
|
792
|
+
horde = HordeLib()
|
|
793
|
+
payload = ImageGenPayload(
|
|
794
|
+
prompt="an ancient llamia monster",
|
|
795
|
+
model="Deliberate",
|
|
796
|
+
sampler_name="k_dpmpp_2m",
|
|
797
|
+
cfg_scale=7.5,
|
|
798
|
+
ddim_steps=25,
|
|
799
|
+
width=512,
|
|
800
|
+
height=512,
|
|
801
|
+
seed=123456789,
|
|
802
|
+
)
|
|
803
|
+
result = horde.basic_inference_single_image(payload)
|
|
804
|
+
result.image.save("test.png")
|
|
805
|
+
```
|
|
796
806
|
|
|
797
|
-
|
|
798
|
-
from hordelib.shared_model_manager import SharedModelManager
|
|
807
|
+
`hordelib.initialise()` wipes `sys.argv` -- parse command-line arguments first. It also forbids dev-mode paths containing spaces (do not clone the repo to a path with spaces) and raises if you try to import any ComfyUI-touching code before calling it.
|
|
799
808
|
|
|
800
|
-
|
|
809
|
+
For more usage patterns, see the [public API docs](docs/public_api.md) and the example scripts in `examples/`. For complete API surface reference, consult the test suite under `tests/`.
|
|
801
810
|
|
|
802
|
-
|
|
803
|
-
raise Exception("Failed to load compvis model manager")
|
|
811
|
+
---
|
|
804
812
|
|
|
805
|
-
|
|
806
|
-
SharedModelManager.manager.compvis.validate_model("Deliberate")
|
|
813
|
+
## Installation
|
|
807
814
|
|
|
815
|
+
Requires an NVIDIA GPU with CUDA. On Linux, install the [NVIDIA CUDA Toolkit](https://developer.nvidia.com/cuda-downloads) first. Systems with 16 GB RAM or less need swap space and may need an enlarged `/tmp`:
|
|
816
|
+
```bash
|
|
817
|
+
sudo mount -o remount,size=16G /tmp
|
|
818
|
+
```
|
|
808
819
|
|
|
809
|
-
|
|
810
|
-
"sampler_name": "k_dpmpp_2m",
|
|
811
|
-
"cfg_scale": 7.5,
|
|
812
|
-
"denoising_strength": 1.0,
|
|
813
|
-
"seed": 123456789,
|
|
814
|
-
"height": 512,
|
|
815
|
-
"width": 512,
|
|
816
|
-
"karras": False,
|
|
817
|
-
"tiling": False,
|
|
818
|
-
"hires_fix": False,
|
|
819
|
-
"clip_skip": 1,
|
|
820
|
-
"control_type": None,
|
|
821
|
-
"image_is_control": False,
|
|
822
|
-
"return_control_map": False,
|
|
823
|
-
"prompt": "an ancient llamia monster",
|
|
824
|
-
"ddim_steps": 25,
|
|
825
|
-
"n_iter": 1,
|
|
826
|
-
"model": "Deliberate",
|
|
827
|
-
}
|
|
828
|
-
pil_image = generate.basic_inference_single_image(data).image
|
|
820
|
+
### From PyPI
|
|
829
821
|
|
|
830
|
-
|
|
831
|
-
|
|
822
|
+
```
|
|
823
|
+
# CUDA 13+ driver -> torch 2.12.0 (the default line):
|
|
824
|
+
pip install --extra-index-url https://download.pytorch.org/whl/cu130 horde-engine
|
|
825
|
+
# CUDA 12.x driver -> the newest CUDA 12.8 build is torch 2.11.0:
|
|
826
|
+
pip install --extra-index-url https://download.pytorch.org/whl/cu128 horde-engine "torch==2.11.0"
|
|
827
|
+
```
|
|
832
828
|
|
|
833
|
-
|
|
829
|
+
### From source (development)
|
|
834
830
|
|
|
831
|
+
```bash
|
|
832
|
+
git clone https://github.com/Haidra-Org/hordelib.git
|
|
833
|
+
cd hordelib
|
|
834
|
+
uv sync # installs the latest torch (2.12.0, the CUDA 12.6 build) -- see "Choosing a PyTorch build"
|
|
835
835
|
```
|
|
836
836
|
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
See `tests/run_*.py` for more standalone examples.
|
|
837
|
+
### Choosing a PyTorch build
|
|
840
838
|
|
|
841
|
-
|
|
839
|
+
`horde-engine` does not pin `torch`: it declares `torchvision`/`torchaudio` as version *ranges*, and
|
|
840
|
+
torchvision pins the exact matching torch in its metadata, so installing the library pulls the latest
|
|
841
|
+
supported torch (**2.12.0** -> torchvision 0.27.0 / torchaudio 2.11.0; torchaudio has no 2.12 release).
|
|
842
|
+
You only pick the *build* (which CUDA/ROCm wheels) for your hardware.
|
|
842
843
|
|
|
843
|
-
|
|
844
|
+
For development, `uv sync` installs the **CUDA 12.6** build of torch 2.12.0 (the index hordelib routes
|
|
845
|
+
to in `[tool.uv.sources]`). It runs on any CUDA 12.6+ driver and, via NVIDIA driver
|
|
846
|
+
backward-compatibility, on CUDA 13 drivers too -- the broadest single build. To use a different build,
|
|
847
|
+
override it ad-hoc after syncing:
|
|
844
848
|
|
|
845
|
-
```
|
|
846
|
-
|
|
847
|
-
|
|
849
|
+
```bash
|
|
850
|
+
uv sync
|
|
851
|
+
# then, only if you want a build other than the cu126 default:
|
|
852
|
+
UV_TORCH_BACKEND=auto uv pip install torch torchvision torchaudio # auto-detect your GPU
|
|
853
|
+
uv pip install torch --extra-index-url https://download.pytorch.org/whl/cu130 # exact CUDA 13 build
|
|
848
854
|
```
|
|
849
855
|
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
`hordelib` depends on a large number of open source projects, and most of these dependencies are automatically downloaded and installed when you install `hordelib`. Due to the nature and purpose of `hordelib` some dependencies are bundled directly _inside_ `hordelib` itself.
|
|
856
|
+
With `pip`, select the index with `--extra-index-url`:
|
|
853
857
|
|
|
854
|
-
|
|
855
|
-
|
|
858
|
+
| Hardware | index | Notes |
|
|
859
|
+
|---|---|---|
|
|
860
|
+
| NVIDIA, CUDA 13+ driver | `cu130` | torch 2.12.0; a 13.0 build covers any 13.x driver (incl. 13.2). |
|
|
861
|
+
| NVIDIA, CUDA 13.2 (exact) | `cu132` | torch 2.12.0; `cu130` also runs on a 13.2 driver. |
|
|
862
|
+
| NVIDIA, CUDA 12.6+ driver | `cu126` | torch 2.12.0; the only CUDA-12 build of 2.12.0. |
|
|
863
|
+
| NVIDIA, CUDA 12.x, older torch | `cu128` | No 2.12.0 wheel; caps at torch **2.11.0** (add `"torch==2.11.0"`). |
|
|
864
|
+
| AMD (Linux only) | `rocm6.4` | torch **2.9.1 only** (see note below). |
|
|
865
|
+
| No GPU | `cpu` | ~100x slower; testing only. |
|
|
856
866
|
|
|
857
|
-
|
|
867
|
+
> **ROCm:** only torch 2.9.1 (ROCm 6.4) is currently installable. PyTorch publishes torch 2.10-2.12 on
|
|
868
|
+
> rocm7.x but not the matching `pytorch-triton-rocm` (3.6.0/3.7.0) those wheels hard-depend on, so they
|
|
869
|
+
> cannot be resolved yet. Install it ad-hoc: `uv pip install torch==2.9.1 torchvision torchaudio
|
|
870
|
+
> pytorch-triton-rocm --extra-index-url https://download.pytorch.org/whl/rocm6.4`.
|
|
858
871
|
|
|
859
|
-
|
|
860
|
-
Custom nodes for ComfyUI providing Controlnet preprocessing capability. Licened under the terms of the Apache License 2.0.
|
|
872
|
+
---
|
|
861
873
|
|
|
862
|
-
|
|
874
|
+
## Architecture (v3)
|
|
863
875
|
|
|
864
|
-
|
|
876
|
+
The v3 refactor replaced the legacy dict-heavy pipeline machinery with a typed, testable, registry-driven layer. The key pieces:
|
|
865
877
|
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
878
|
+
| Layer | Location | Role |
|
|
879
|
+
|---|---|---|
|
|
880
|
+
| **Public API** | `hordelib/api.py` | Declared consumer surface. Workers import from here only. |
|
|
881
|
+
| **Bootstrap** | `hordelib/initialisation.py` | `initialise()` -- manifest installer, path patching, ComfyUI import, monkeypatches. |
|
|
882
|
+
| **Typed pipeline** | `hordelib/pipeline/` | `ImageGenPayload` (pydantic, clamp-dont-reject), `PipelineTemplate`/`ParamBinding`, priority-ordered `PipelineRegistry`, pure graph patch functions, IO/model resolution. All GPU-free and unit-tested. |
|
|
883
|
+
| **Execution bridge** | `hordelib/execution/` | `ExecutionBackend` protocol, in-process ComfyUI backend, VRAM monkeypatches, pure graph utilities. |
|
|
884
|
+
| **Environment manifest** | `hordelib/installation/` | `manifest.json` pins ComfyUI commit + external custom nodes. `EnvironmentInstaller` checks out/clones idempotently. |
|
|
885
|
+
| **ComfyUI bridge** | `hordelib/comfy_horde.py` | `Comfy_Horde` -- the actual ComfyUI process. `do_comfy_import()` applies monkeypatches. |
|
|
886
|
+
| **Model managers** | `hordelib/model_manager/` | Per-category model records (pydantic), download/validate/lookup, LoRA/TI adhoc cache. |
|
|
887
|
+
| **Pipeline JSON** | `hordelib/pipelines/` | Backend-format pipeline files executed at runtime. |
|
|
888
|
+
| **Pipeline designs** | `hordelib/pipeline_designs/` | ComfyUI-app-editable source workflows (convert to `pipelines/`). |
|
|
889
|
+
| **Custom nodes** | `hordelib/nodes/` | First-party Horde nodes (`HordeCheckpointLoader`, `HordeImageOutput`) and vendored compat nodes. External nodes (controlnet aux, QR) are git-pinned in the manifest. |
|
|
871
890
|
|
|
872
|
-
|
|
873
|
-
- `git` (install git)
|
|
874
|
-
- `tox` (`pip install tox`)
|
|
875
|
-
- Set the environmental variable `AIWORKER_CACHE_HOME` to point to a model directory.
|
|
891
|
+
### Pipeline flow
|
|
876
892
|
|
|
877
|
-
Note the model directory must currently be in the original AI Horde directory structure:
|
|
878
893
|
```
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
...etc...
|
|
885
|
-
controlnet\
|
|
886
|
-
embeds\
|
|
887
|
-
esrgan\
|
|
888
|
-
gfpgan\
|
|
889
|
-
safety_checker\
|
|
894
|
+
dict payload --> normalize (horde_compat) --> ImageGenPayload
|
|
895
|
+
--> resolve_context (model files, loras, TIs)
|
|
896
|
+
--> registry.select (predicate + priority --> PipelineTemplate)
|
|
897
|
+
--> materialize (bindings + patch steps --> ComfyGraph)
|
|
898
|
+
--> backend.run_pipeline --> ResultingImageReturn
|
|
890
899
|
```
|
|
891
900
|
|
|
892
|
-
###
|
|
893
|
-
|
|
894
|
-
Simply execute: `tox` (or `tox -q` for less noisy output)
|
|
895
|
-
|
|
896
|
-
This will take a while the first time as it installs all the dependencies.
|
|
897
|
-
|
|
898
|
-
If the tests run successfully images will be produced in the `images/` folder.
|
|
899
|
-
|
|
900
|
-
#### Running a specific test file
|
|
901
|
+
### Key invariants
|
|
901
902
|
|
|
902
|
-
`
|
|
903
|
+
- **`initialise()` before everything.** Importing `HordeLib` or any ComfyUI-touching code before `initialise()` raises `RuntimeError`. The test suite enforces this.
|
|
904
|
+
- **Public API only.** Consumers import from `hordelib.api`. Anything not re-exported there is internal and may change without notice. Enforced by `tests/meta/test_public_api_contract.py`.
|
|
905
|
+
- **Clamp, don't reject.** Payload validation coerces bad values to defaults rather than raising -- the Horde contract requires tolerance.
|
|
906
|
+
- **Node titles are the parameter namespace.** A KSampler titled `sampler` produces dotted parameters `sampler.cfg`, `sampler.seed`, etc. Renaming a title silently breaks parameter mapping.
|
|
907
|
+
- **Pipeline selection is registry-driven.** Predicates + explicit priorities replace the old if/elif tree. Adding a new baseline requires one family module, one template, one register call, and one inference test. See [Adding a baseline](docs/adding-a-baseline.md).
|
|
903
908
|
|
|
904
|
-
|
|
909
|
+
---
|
|
905
910
|
|
|
906
|
-
|
|
911
|
+
## Model directory layout
|
|
907
912
|
|
|
908
|
-
|
|
913
|
+
`AIWORKER_CACHE_HOME` must follow the AI Horde directory structure:
|
|
909
914
|
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
915
|
+
```
|
|
916
|
+
<AIWORKER_CACHE_HOME>/
|
|
917
|
+
clip/
|
|
918
|
+
codeformer/
|
|
919
|
+
compvis/
|
|
920
|
+
Deliberate.ckpt
|
|
921
|
+
...
|
|
922
|
+
controlnet/
|
|
923
|
+
embeds/
|
|
924
|
+
esrgan/
|
|
925
|
+
gfpgan/
|
|
926
|
+
safety_checker/
|
|
927
|
+
```
|
|
923
928
|
|
|
924
|
-
|
|
929
|
+
Models are managed through `SharedModelManager` (download, validate, list available). See `examples/download_all_sd_models.py` for bulk downloading.
|
|
925
930
|
|
|
926
|
-
|
|
931
|
+
---
|
|
927
932
|
|
|
928
|
-
|
|
933
|
+
## Development
|
|
929
934
|
|
|
930
|
-
`
|
|
935
|
+
Requirements: `git`, [`uv`](https://docs.astral.sh/uv/), `AIWORKER_CACHE_HOME` set to a model directory, and a CUDA GPU.
|
|
931
936
|
|
|
932
|
-
|
|
937
|
+
### Build, lint, test
|
|
933
938
|
|
|
934
|
-
`
|
|
935
|
-
|
|
939
|
+
The whole toolchain lives in one `uv`-managed `.venv`. Sync it once (installs the CUDA 12.6 build of
|
|
940
|
+
torch 2.12.0 via `[tool.uv.sources]`), then drive tools with `uv run --no-sync`:
|
|
936
941
|
|
|
937
|
-
|
|
942
|
+
```bash
|
|
943
|
+
uv sync # one-time, and after dependency changes
|
|
938
944
|
|
|
939
|
-
|
|
945
|
+
# Full test suite. The import guard runs first in a clean process (it asserts no ComfyUI
|
|
946
|
+
# import happens before initialise()), then the rest of the suite runs:
|
|
947
|
+
uv run --no-sync pytest -x tests/meta -k test_no_initialise_comfy_horde
|
|
948
|
+
uv run --no-sync pytest -x tests --cov --ignore=tests/meta --durations=20
|
|
940
949
|
|
|
941
|
-
|
|
950
|
+
uv run --no-sync pytest -k <pattern> # run a subset
|
|
951
|
+
uv run --no-sync pre-commit run --all-files # lint + format gate (black + ruff + mypy)
|
|
952
|
+
uv build # build sdist + wheel
|
|
953
|
+
```
|
|
942
954
|
|
|
943
|
-
|
|
955
|
+
(Equivalently, activate `.venv` and call `pytest` / `pre-commit` directly.)
|
|
944
956
|
|
|
945
|
-
|
|
957
|
+
The first test run downloads many multi-GB models and is very slow. Most CI/agent sandboxes
|
|
958
|
+
cannot run the full inference suite; prefer `uv run --no-sync pre-commit run --all-files` for
|
|
959
|
+
quick feedback.
|
|
946
960
|
|
|
947
|
-
|
|
961
|
+
Tests require a CUDA GPU, `AIWORKER_CACHE_HOME`, `CIVIT_API_TOKEN`, and the committed `images_expected/` reference images. Image-output tests compare generated images against references via cosine/histogram similarity. Set `HORDELIB_SKIP_SIMILARITY_FAIL=1` to downgrade similarity failures to skips on different hardware.
|
|
948
962
|
|
|
949
|
-
###
|
|
963
|
+
### Key test areas
|
|
950
964
|
|
|
951
|
-
|
|
965
|
+
| Path | What it covers |
|
|
966
|
+
|---|---|
|
|
967
|
+
| `tests/pipeline/` | Payload models, graph operations, template integrity, registry selection -- all GPU-free |
|
|
968
|
+
| `tests/execution/` | Graph utilities, modality seams -- GPU-free |
|
|
969
|
+
| `tests/meta/` | Public API contract, `initialise()`-before-use guard |
|
|
970
|
+
| `tests/test_horde_inference_*.py` | Full GPU inference with image-similarity oracles |
|
|
971
|
+
| `tests/installation/` | Manifest round-trip, installer idempotency |
|
|
952
972
|
|
|
953
|
-
###
|
|
973
|
+
### Designing and converting pipelines
|
|
954
974
|
|
|
955
|
-
|
|
975
|
+
Design pipelines in the ComfyUI web app (`cd ComfyUI && python main.py`, then http://127.0.0.1:8188/). Assign stable `title` attributes to nodes -- these become the dotted parameter names. Save the design in `hordelib/pipeline_designs/` as `pipeline_<name>.json`.
|
|
956
976
|
|
|
957
|
-
|
|
977
|
+
Convert to backend format by running the pipeline through the embedded ComfyUI (it auto-saves `comfy-prompt.json`), then save the result in `hordelib/pipelines/` with the same filename.
|
|
958
978
|
|
|
959
|
-
|
|
979
|
+
Do not hand-edit `pipelines/*.json` if a `pipeline_designs/` source exists.
|
|
960
980
|
|
|
961
|
-
|
|
962
|
-
1. Label the PR with "release:patch" (0.0.1) or "release:minor" (0.1.0)
|
|
963
|
-
1. Merge the PR with a standard merge commit (not squash)
|
|
981
|
+
### Updating ComfyUI or external custom nodes
|
|
964
982
|
|
|
983
|
+
Change the relevant commit SHA in `hordelib/installation/manifest.json`:
|
|
984
|
+
- `comfyui_ref` for ComfyUI itself
|
|
985
|
+
- `ref` for each external custom node
|
|
965
986
|
|
|
966
|
-
|
|
987
|
+
Full 40-character SHAs only. The next `hordelib.initialise()` (or `python -m hordelib.installation`) applies the update. Run the full test suite afterwards.
|
|
967
988
|
|
|
968
|
-
|
|
989
|
+
### Local wheel build
|
|
969
990
|
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
--extra-index-url https://download.pytorch.org/whl/cu118
|
|
973
|
-
hordelib
|
|
991
|
+
```bash
|
|
992
|
+
uv build # writes dist/horde_engine-<version>.tar.gz and -<version>-py3-none-any.whl
|
|
974
993
|
```
|
|
975
994
|
|
|
976
|
-
|
|
995
|
+
The version is derived from git tags by `hatch-vcs`: a clean checkout sitting exactly on a
|
|
996
|
+
`vX.Y.Z` tag builds `X.Y.Z`; anything else builds a dev version (e.g. `1.2.3.devN`). ComfyUI is
|
|
997
|
+
not bundled into the wheel -- it is fetched per `hordelib/installation/manifest.json` on first
|
|
998
|
+
`initialise()`. To smoke-test the wheel away from the source tree (so the repo's `hordelib/`
|
|
999
|
+
cannot shadow the installed package), install it into a throwaway venv created outside the repo.
|
|
977
1000
|
|
|
978
|
-
|
|
1001
|
+
### Release process
|
|
979
1002
|
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
.\venv\Scripts\activate
|
|
984
|
-
pip install -r requirements.txt
|
|
985
|
-
```
|
|
1003
|
+
Releases are cut by pushing a version tag. The tag **is** the version (`hatch-vcs`), and the
|
|
1004
|
+
[release workflow](.github/workflows/release.yml) builds with `uv build` and publishes to PyPI
|
|
1005
|
+
via trusted publishing (then creates a GitHub Release for the tag).
|
|
986
1006
|
|
|
987
|
-
|
|
1007
|
+
```bash
|
|
1008
|
+
git checkout main && git pull
|
|
1009
|
+
git tag vX.Y.Z # must be vX.Y.Z and sit on the commit you want released
|
|
1010
|
+
git push origin vX.Y.Z
|
|
988
1011
|
```
|
|
989
|
-
python run_controlnet.py
|
|
990
1012
|
|
|
991
|
-
|
|
992
|
-
```
|
|
1013
|
+
---
|
|
993
1014
|
|
|
994
|
-
|
|
1015
|
+
## Documentation
|
|
995
1016
|
|
|
996
|
-
|
|
1017
|
+
| Document | Content |
|
|
1018
|
+
|---|---|
|
|
1019
|
+
| [docs/public_api.md](docs/public_api.md) | Declared consumer surface and key patterns |
|
|
1020
|
+
| [docs/adding-a-baseline.md](docs/adding-a-baseline.md) | Checklist for supporting a new model architecture |
|
|
1021
|
+
| [docs/modality-readiness.md](docs/modality-readiness.md) | Audit of audio/video modality seams |
|
|
1022
|
+
| [docs/plans/major-overhaul-1.md](docs/plans/major-overhaul-1.md) | v3 phased refactor plan and status |
|
|
1023
|
+
| [AGENTS.md](AGENTS.md) | Comprehensive codebase map, conventions, and sensitive areas |
|
|
997
1024
|
|
|
998
|
-
|
|
999
|
-
python build_helper.py
|
|
1000
|
-
python -m build --sdist --wheel --outdir dist/ .
|
|
1001
|
-
python build_helper.py --fix
|
|
1002
|
-
```
|
|
1025
|
+
---
|
|
1003
1026
|
|
|
1004
|
-
|
|
1027
|
+
## License
|
|
1005
1028
|
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1029
|
+
[GNU Affero General Public License v3.0](LICENSE)
|
|
1030
|
+
|
|
1031
|
+
## Acknowledgments
|
|
1009
1032
|
|
|
1010
|
-
|
|
1033
|
+
`horde-engine` builds on a large number of open-source projects:
|
|
1011
1034
|
|
|
1012
|
-
-
|
|
1013
|
-
-
|
|
1035
|
+
- [ComfyUI](https://github.com/comfyanonymous/ComfyUI) (GPLv3) -- the graph/nodes inference engine this project wraps.
|
|
1036
|
+
- [comfyui_controlnet_aux](https://github.com/Fannovel16/comfy_controlnet_preprocessors) (Apache 2.0) -- ControlNet preprocessors, installed via the manifest.
|
|
1037
|
+
- [ComfyUI-layerdiffuse](https://github.com/huchenlei/ComfyUI-layerdiffuse) -- layer diffusion nodes (vendored with compat fixes).
|
|
1038
|
+
- [facerestore_cf](https://civitai.com/models/24690/comfyui-facerestore-node) -- face restoration nodes (vendored with compat fixes).
|
|
1039
|
+
- [ComfyQR](https://gitlab.com/sofuego-comfy-nodes/ComfyQR) -- QR code generation, installed via the manifest.
|
|
1040
|
+
- [horde-sdk](https://github.com/Haidra-Org/horde-sdk) and [horde-model-reference](https://github.com/Haidra-Org/horde-model-reference) -- payload types and model metadata consumed by this library.
|
|
1014
1041
|
|
|
1015
1042
|
|
|
1016
1043
|
|
|
@@ -1030,4 +1057,4 @@ python -m pip install /path/to/hordelib/dist/horde_engine-*.whl
|
|
|
1030
1057
|
[pr-test-url]: https://tests.hordelib.org/unstable/index.html
|
|
1031
1058
|
[all-model-url]: https://tests.hordelib.org/all_models/
|
|
1032
1059
|
[changelog-image]: https://img.shields.io/badge/Release-Changelog-yellow
|
|
1033
|
-
[changelog-url]: https://github.com/Haidra-Org/hordelib/
|
|
1060
|
+
[changelog-url]: https://github.com/Haidra-Org/hordelib/releases
|