horde-engine 2.8.2__tar.gz → 2.9.2__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.
Files changed (1790) hide show
  1. horde_engine-2.9.2/.changelog +32 -0
  2. horde_engine-2.9.2/.git-blame-ignore-revs +13 -0
  3. horde_engine-2.9.2/.github/dependabot.yml +11 -0
  4. horde_engine-2.9.2/.github/workflows/maintests.yml +59 -0
  5. horde_engine-2.9.2/.github/workflows/prtests.yml +64 -0
  6. horde_engine-2.9.2/.github/workflows/release.yml +114 -0
  7. horde_engine-2.9.2/.gitignore +169 -0
  8. horde_engine-2.9.2/.pre-commit-config.yaml +22 -0
  9. horde_engine-2.9.2/CHANGELOG.md +1382 -0
  10. horde_engine-2.9.2/LICENSE +661 -0
  11. horde_engine-2.9.2/MANIFEST.in +12 -0
  12. horde_engine-2.9.2/PKG-INFO +995 -0
  13. horde_engine-2.9.2/README.md +274 -0
  14. horde_engine-2.9.2/build_helper.py +110 -0
  15. horde_engine-2.9.2/examples/download_all_sd_models.py +13 -0
  16. horde_engine-2.9.2/examples/kudos.py +230 -0
  17. horde_engine-2.9.2/examples/lora_downloader.py +300 -0
  18. horde_engine-2.9.2/examples/make_index.py +106 -0
  19. horde_engine-2.9.2/examples/make_index_all_models.py +112 -0
  20. horde_engine-2.9.2/examples/run_all_models.py +78 -0
  21. horde_engine-2.9.2/examples/run_all_stress_tests.py +47 -0
  22. horde_engine-2.9.2/examples/run_controlnet.py +52 -0
  23. horde_engine-2.9.2/examples/run_controlnet_annotator.py +51 -0
  24. horde_engine-2.9.2/examples/run_facefix.py +40 -0
  25. horde_engine-2.9.2/examples/run_img2img.py +46 -0
  26. horde_engine-2.9.2/examples/run_img2img_hires.py +46 -0
  27. horde_engine-2.9.2/examples/run_img2img_inpaint.py +47 -0
  28. horde_engine-2.9.2/examples/run_img2img_inpaint_mask.py +48 -0
  29. horde_engine-2.9.2/examples/run_img2img_mask.py +48 -0
  30. horde_engine-2.9.2/examples/run_img2img_outpaint.py +47 -0
  31. horde_engine-2.9.2/examples/run_inpainting.py +47 -0
  32. horde_engine-2.9.2/examples/run_kudos_test.py +163 -0
  33. horde_engine-2.9.2/examples/run_long_prompt_check.py +126 -0
  34. horde_engine-2.9.2/examples/run_lora.py +54 -0
  35. horde_engine-2.9.2/examples/run_memory_test.py +181 -0
  36. horde_engine-2.9.2/examples/run_sdk_inference_example.py +66 -0
  37. horde_engine-2.9.2/examples/run_stress_test_cnet.py +136 -0
  38. horde_engine-2.9.2/examples/run_stress_test_cnet_preproc.py +119 -0
  39. horde_engine-2.9.2/examples/run_stress_test_dynamic.py +206 -0
  40. horde_engine-2.9.2/examples/run_stress_test_img2img.py +135 -0
  41. horde_engine-2.9.2/examples/run_stress_test_job_collection.py +395 -0
  42. horde_engine-2.9.2/examples/run_stress_test_mixed.py +233 -0
  43. horde_engine-2.9.2/examples/run_stress_test_pp.py +129 -0
  44. horde_engine-2.9.2/examples/run_stress_test_txt2img.py +134 -0
  45. horde_engine-2.9.2/examples/run_stress_test_txt2img_hiresfix.py +134 -0
  46. horde_engine-2.9.2/examples/run_txt2img.py +43 -0
  47. horde_engine-2.9.2/examples/run_txt2img_hires.py +43 -0
  48. horde_engine-2.9.2/examples/run_txt2img_local_model.py +48 -0
  49. horde_engine-2.9.2/examples/run_upscale.py +40 -0
  50. horde_engine-2.9.2/horde_engine.egg-info/PKG-INFO +995 -0
  51. horde_engine-2.9.2/horde_engine.egg-info/SOURCES.txt +861 -0
  52. horde_engine-2.9.2/hordelib/__init__.py +12 -0
  53. horde_engine-2.9.2/hordelib/__pyinstaller.py +10 -0
  54. horde_engine-2.9.2/hordelib/_comfyui/.gitignore +18 -0
  55. horde_engine-2.9.2/hordelib/_comfyui/CODEOWNERS +1 -0
  56. horde_engine-2.9.2/hordelib/_comfyui/LICENSE +674 -0
  57. horde_engine-2.9.2/hordelib/_comfyui/README.md +224 -0
  58. horde_engine-2.9.2/hordelib/_comfyui/app/app_settings.py +54 -0
  59. horde_engine-2.9.2/hordelib/_comfyui/app/user_manager.py +140 -0
  60. horde_engine-2.9.2/hordelib/_comfyui/comfy/checkpoint_pickle.py +13 -0
  61. horde_engine-2.9.2/hordelib/_comfyui/comfy/cldm/cldm.py +312 -0
  62. horde_engine-2.9.2/hordelib/_comfyui/comfy/cli_args.py +136 -0
  63. horde_engine-2.9.2/hordelib/_comfyui/comfy/clip_config_bigg.json +23 -0
  64. horde_engine-2.9.2/hordelib/_comfyui/comfy/clip_model.py +194 -0
  65. horde_engine-2.9.2/hordelib/_comfyui/comfy/clip_vision.py +117 -0
  66. horde_engine-2.9.2/hordelib/_comfyui/comfy/clip_vision_config_g.json +18 -0
  67. horde_engine-2.9.2/hordelib/_comfyui/comfy/clip_vision_config_h.json +18 -0
  68. horde_engine-2.9.2/hordelib/_comfyui/comfy/clip_vision_config_vitl.json +18 -0
  69. horde_engine-2.9.2/hordelib/_comfyui/comfy/conds.py +78 -0
  70. horde_engine-2.9.2/hordelib/_comfyui/comfy/controlnet.py +554 -0
  71. horde_engine-2.9.2/hordelib/_comfyui/comfy/diffusers_convert.py +281 -0
  72. horde_engine-2.9.2/hordelib/_comfyui/comfy/diffusers_load.py +36 -0
  73. horde_engine-2.9.2/hordelib/_comfyui/comfy/extra_samplers/uni_pc.py +875 -0
  74. horde_engine-2.9.2/hordelib/_comfyui/comfy/gligen.py +343 -0
  75. horde_engine-2.9.2/hordelib/_comfyui/comfy/k_diffusion/sampling.py +810 -0
  76. horde_engine-2.9.2/hordelib/_comfyui/comfy/k_diffusion/utils.py +313 -0
  77. horde_engine-2.9.2/hordelib/_comfyui/comfy/latent_formats.py +104 -0
  78. horde_engine-2.9.2/hordelib/_comfyui/comfy/ldm/cascade/common.py +161 -0
  79. horde_engine-2.9.2/hordelib/_comfyui/comfy/ldm/cascade/controlnet.py +93 -0
  80. horde_engine-2.9.2/hordelib/_comfyui/comfy/ldm/cascade/stage_a.py +255 -0
  81. horde_engine-2.9.2/hordelib/_comfyui/comfy/ldm/cascade/stage_b.py +257 -0
  82. horde_engine-2.9.2/hordelib/_comfyui/comfy/ldm/cascade/stage_c.py +274 -0
  83. horde_engine-2.9.2/hordelib/_comfyui/comfy/ldm/cascade/stage_c_coder.py +95 -0
  84. horde_engine-2.9.2/hordelib/_comfyui/comfy/ldm/models/autoencoder.py +228 -0
  85. horde_engine-2.9.2/hordelib/_comfyui/comfy/ldm/modules/attention.py +801 -0
  86. horde_engine-2.9.2/hordelib/_comfyui/comfy/ldm/modules/diffusionmodules/model.py +651 -0
  87. horde_engine-2.9.2/hordelib/_comfyui/comfy/ldm/modules/diffusionmodules/openaimodel.py +890 -0
  88. horde_engine-2.9.2/hordelib/_comfyui/comfy/ldm/modules/diffusionmodules/upscaling.py +85 -0
  89. horde_engine-2.9.2/hordelib/_comfyui/comfy/ldm/modules/diffusionmodules/util.py +306 -0
  90. horde_engine-2.9.2/hordelib/_comfyui/comfy/ldm/modules/distributions/distributions.py +92 -0
  91. horde_engine-2.9.2/hordelib/_comfyui/comfy/ldm/modules/ema.py +80 -0
  92. horde_engine-2.9.2/hordelib/_comfyui/comfy/ldm/modules/encoders/noise_aug_modules.py +35 -0
  93. horde_engine-2.9.2/hordelib/_comfyui/comfy/ldm/modules/sub_quadratic_attention.py +274 -0
  94. horde_engine-2.9.2/hordelib/_comfyui/comfy/ldm/modules/temporal_ae.py +245 -0
  95. horde_engine-2.9.2/hordelib/_comfyui/comfy/ldm/util.py +197 -0
  96. horde_engine-2.9.2/hordelib/_comfyui/comfy/lora.py +241 -0
  97. horde_engine-2.9.2/hordelib/_comfyui/comfy/model_base.py +559 -0
  98. horde_engine-2.9.2/hordelib/_comfyui/comfy/model_detection.py +383 -0
  99. horde_engine-2.9.2/hordelib/_comfyui/comfy/model_management.py +877 -0
  100. horde_engine-2.9.2/hordelib/_comfyui/comfy/model_patcher.py +485 -0
  101. horde_engine-2.9.2/hordelib/_comfyui/comfy/model_sampling.py +203 -0
  102. horde_engine-2.9.2/hordelib/_comfyui/comfy/ops.py +163 -0
  103. horde_engine-2.9.2/hordelib/_comfyui/comfy/options.py +6 -0
  104. horde_engine-2.9.2/hordelib/_comfyui/comfy/sample.py +44 -0
  105. horde_engine-2.9.2/hordelib/_comfyui/comfy/sampler_helpers.py +76 -0
  106. horde_engine-2.9.2/hordelib/_comfyui/comfy/samplers.py +755 -0
  107. horde_engine-2.9.2/hordelib/_comfyui/comfy/sd.py +626 -0
  108. horde_engine-2.9.2/hordelib/_comfyui/comfy/sd1_clip.py +521 -0
  109. horde_engine-2.9.2/hordelib/_comfyui/comfy/sd1_clip_config.json +25 -0
  110. horde_engine-2.9.2/hordelib/_comfyui/comfy/sd1_tokenizer/merges.txt +48895 -0
  111. horde_engine-2.9.2/hordelib/_comfyui/comfy/sd1_tokenizer/special_tokens_map.json +24 -0
  112. horde_engine-2.9.2/hordelib/_comfyui/comfy/sd1_tokenizer/tokenizer_config.json +34 -0
  113. horde_engine-2.9.2/hordelib/_comfyui/comfy/sd1_tokenizer/vocab.json +49410 -0
  114. horde_engine-2.9.2/hordelib/_comfyui/comfy/sd2_clip.py +24 -0
  115. horde_engine-2.9.2/hordelib/_comfyui/comfy/sd2_clip_config.json +23 -0
  116. horde_engine-2.9.2/hordelib/_comfyui/comfy/sdxl_clip.py +88 -0
  117. horde_engine-2.9.2/hordelib/_comfyui/comfy/supported_models.py +481 -0
  118. horde_engine-2.9.2/hordelib/_comfyui/comfy/supported_models_base.py +95 -0
  119. horde_engine-2.9.2/hordelib/_comfyui/comfy/t2i_adapter/adapter.py +293 -0
  120. horde_engine-2.9.2/hordelib/_comfyui/comfy/taesd/taesd.py +77 -0
  121. horde_engine-2.9.2/hordelib/_comfyui/comfy/utils.py +483 -0
  122. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/DAT.py +1182 -0
  123. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/HAT.py +1277 -0
  124. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/LICENSE-DAT +201 -0
  125. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/LICENSE-ESRGAN +201 -0
  126. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/LICENSE-HAT +21 -0
  127. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/LICENSE-RealESRGAN +29 -0
  128. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/LICENSE-SCUNet +201 -0
  129. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/LICENSE-SPSR +201 -0
  130. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/LICENSE-SwiftSRGAN +121 -0
  131. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/LICENSE-Swin2SR +201 -0
  132. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/LICENSE-SwinIR +201 -0
  133. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/LICENSE-lama +201 -0
  134. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/LaMa.py +694 -0
  135. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/OmniSR/ChannelAttention.py +110 -0
  136. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/OmniSR/LICENSE +201 -0
  137. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/OmniSR/OSA.py +577 -0
  138. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/OmniSR/OSAG.py +60 -0
  139. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/OmniSR/OmniSR.py +143 -0
  140. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/OmniSR/esa.py +294 -0
  141. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/OmniSR/layernorm.py +70 -0
  142. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/OmniSR/pixelshuffle.py +31 -0
  143. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/RRDB.py +296 -0
  144. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/SCUNet.py +455 -0
  145. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/SPSR.py +383 -0
  146. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/SRVGG.py +114 -0
  147. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/SwiftSRGAN.py +161 -0
  148. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/Swin2SR.py +1377 -0
  149. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/SwinIR.py +1224 -0
  150. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/block.py +546 -0
  151. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/face/LICENSE-GFPGAN +351 -0
  152. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/face/LICENSE-RestoreFormer +351 -0
  153. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/face/LICENSE-codeformer +35 -0
  154. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/face/arcface_arch.py +265 -0
  155. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/face/codeformer.py +790 -0
  156. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/face/fused_act.py +81 -0
  157. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/face/gfpgan_bilinear_arch.py +389 -0
  158. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/face/gfpganv1_arch.py +566 -0
  159. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/face/gfpganv1_clean_arch.py +370 -0
  160. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/face/restoreformer_arch.py +776 -0
  161. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/face/stylegan2_arch.py +865 -0
  162. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/face/stylegan2_bilinear_arch.py +709 -0
  163. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/face/stylegan2_clean_arch.py +453 -0
  164. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/face/upfirdn2d.py +194 -0
  165. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/timm/LICENSE +201 -0
  166. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/timm/drop.py +223 -0
  167. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/timm/helpers.py +31 -0
  168. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/timm/weight_init.py +128 -0
  169. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/chainner_models/model_loading.py +99 -0
  170. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/chainner_models/types.py +69 -0
  171. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/nodes_align_your_steps.py +45 -0
  172. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/nodes_canny.py +30 -0
  173. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/nodes_clip_sdxl.py +56 -0
  174. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/nodes_compositing.py +202 -0
  175. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/nodes_cond.py +25 -0
  176. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/nodes_custom_sampler.py +612 -0
  177. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/nodes_differential_diffusion.py +42 -0
  178. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/nodes_freelunch.py +113 -0
  179. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/nodes_hypernetwork.py +120 -0
  180. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/nodes_hypertile.py +83 -0
  181. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/nodes_images.py +195 -0
  182. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/nodes_ip2p.py +45 -0
  183. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/nodes_latent.py +155 -0
  184. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/nodes_mask.py +382 -0
  185. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/nodes_model_advanced.py +217 -0
  186. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/nodes_model_downscale.py +53 -0
  187. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/nodes_model_merging.py +339 -0
  188. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/nodes_model_merging_model_specific.py +60 -0
  189. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/nodes_morphology.py +49 -0
  190. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/nodes_pag.py +56 -0
  191. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/nodes_perpneg.py +102 -0
  192. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/nodes_photomaker.py +187 -0
  193. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/nodes_post_processing.py +279 -0
  194. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/nodes_rebatch.py +138 -0
  195. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/nodes_sag.py +170 -0
  196. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/nodes_sdupscale.py +47 -0
  197. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/nodes_stable3d.py +143 -0
  198. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/nodes_stable_cascade.py +140 -0
  199. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/nodes_tomesd.py +177 -0
  200. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/nodes_upscale_model.py +71 -0
  201. horde_engine-2.9.2/hordelib/_comfyui/comfy_extras/nodes_video_model.py +134 -0
  202. horde_engine-2.9.2/hordelib/_comfyui/cuda_malloc.py +90 -0
  203. horde_engine-2.9.2/hordelib/_comfyui/custom_nodes/example_node.py.example +118 -0
  204. horde_engine-2.9.2/hordelib/_comfyui/custom_nodes/websocket_image_save.py +45 -0
  205. horde_engine-2.9.2/hordelib/_comfyui/execution.py +835 -0
  206. horde_engine-2.9.2/hordelib/_comfyui/extra_model_paths.yaml +4 -0
  207. horde_engine-2.9.2/hordelib/_comfyui/extra_model_paths.yaml.example +42 -0
  208. horde_engine-2.9.2/hordelib/_comfyui/folder_paths.py +267 -0
  209. horde_engine-2.9.2/hordelib/_comfyui/latent_preview.py +98 -0
  210. horde_engine-2.9.2/hordelib/_comfyui/main.py +258 -0
  211. horde_engine-2.9.2/hordelib/_comfyui/models/configs/anything_v3.yaml +73 -0
  212. horde_engine-2.9.2/hordelib/_comfyui/models/configs/v1-inference.yaml +70 -0
  213. horde_engine-2.9.2/hordelib/_comfyui/models/configs/v1-inference_clip_skip_2.yaml +73 -0
  214. horde_engine-2.9.2/hordelib/_comfyui/models/configs/v1-inference_clip_skip_2_fp16.yaml +74 -0
  215. horde_engine-2.9.2/hordelib/_comfyui/models/configs/v1-inference_fp16.yaml +71 -0
  216. horde_engine-2.9.2/hordelib/_comfyui/models/configs/v1-inpainting-inference.yaml +71 -0
  217. horde_engine-2.9.2/hordelib/_comfyui/models/configs/v2-inference-v.yaml +68 -0
  218. horde_engine-2.9.2/hordelib/_comfyui/models/configs/v2-inference-v_fp32.yaml +68 -0
  219. horde_engine-2.9.2/hordelib/_comfyui/models/configs/v2-inference.yaml +67 -0
  220. horde_engine-2.9.2/hordelib/_comfyui/models/configs/v2-inference_fp32.yaml +67 -0
  221. horde_engine-2.9.2/hordelib/_comfyui/models/configs/v2-inpainting-inference.yaml +158 -0
  222. horde_engine-2.9.2/hordelib/_comfyui/new_updater.py +35 -0
  223. horde_engine-2.9.2/hordelib/_comfyui/node_helpers.py +10 -0
  224. horde_engine-2.9.2/hordelib/_comfyui/nodes.py +1965 -0
  225. horde_engine-2.9.2/hordelib/_comfyui/notebooks/comfyui_colab.ipynb +329 -0
  226. horde_engine-2.9.2/hordelib/_comfyui/pytest.ini +5 -0
  227. horde_engine-2.9.2/hordelib/_comfyui/requirements.txt +13 -0
  228. horde_engine-2.9.2/hordelib/_comfyui/script_examples/basic_api_example.py +120 -0
  229. horde_engine-2.9.2/hordelib/_comfyui/script_examples/websockets_api_example.py +164 -0
  230. horde_engine-2.9.2/hordelib/_comfyui/script_examples/websockets_api_example_ws_images.py +159 -0
  231. horde_engine-2.9.2/hordelib/_comfyui/server.py +646 -0
  232. horde_engine-2.9.2/hordelib/_comfyui/tests/README.md +29 -0
  233. horde_engine-2.9.2/hordelib/_comfyui/tests/compare/conftest.py +41 -0
  234. horde_engine-2.9.2/hordelib/_comfyui/tests/compare/test_quality.py +195 -0
  235. horde_engine-2.9.2/hordelib/_comfyui/tests/conftest.py +36 -0
  236. horde_engine-2.9.2/hordelib/_comfyui/tests/inference/graphs/default_graph_sdxl1_0.json +144 -0
  237. horde_engine-2.9.2/hordelib/_comfyui/tests/inference/test_inference.py +239 -0
  238. horde_engine-2.9.2/hordelib/_comfyui/tests-ui/afterSetup.js +9 -0
  239. horde_engine-2.9.2/hordelib/_comfyui/tests-ui/babel.config.json +4 -0
  240. horde_engine-2.9.2/hordelib/_comfyui/tests-ui/globalSetup.js +14 -0
  241. horde_engine-2.9.2/hordelib/_comfyui/tests-ui/jest.config.js +11 -0
  242. horde_engine-2.9.2/hordelib/_comfyui/tests-ui/package-lock.json +5586 -0
  243. horde_engine-2.9.2/hordelib/_comfyui/tests-ui/package.json +31 -0
  244. horde_engine-2.9.2/hordelib/_comfyui/tests-ui/setup.js +88 -0
  245. horde_engine-2.9.2/hordelib/_comfyui/tests-ui/tests/extensions.test.js +196 -0
  246. horde_engine-2.9.2/hordelib/_comfyui/tests-ui/tests/groupNode.test.js +1005 -0
  247. horde_engine-2.9.2/hordelib/_comfyui/tests-ui/tests/users.test.js +295 -0
  248. horde_engine-2.9.2/hordelib/_comfyui/tests-ui/tests/widgetInputs.test.js +557 -0
  249. horde_engine-2.9.2/hordelib/_comfyui/tests-ui/utils/ezgraph.js +452 -0
  250. horde_engine-2.9.2/hordelib/_comfyui/tests-ui/utils/index.js +129 -0
  251. horde_engine-2.9.2/hordelib/_comfyui/tests-ui/utils/litegraph.js +36 -0
  252. horde_engine-2.9.2/hordelib/_comfyui/tests-ui/utils/nopProxy.js +6 -0
  253. horde_engine-2.9.2/hordelib/_comfyui/tests-ui/utils/setup.js +81 -0
  254. horde_engine-2.9.2/hordelib/_comfyui/web/extensions/core/clipspace.js +166 -0
  255. horde_engine-2.9.2/hordelib/_comfyui/web/extensions/core/colorPalette.js +761 -0
  256. horde_engine-2.9.2/hordelib/_comfyui/web/extensions/core/contextMenuFilter.js +148 -0
  257. horde_engine-2.9.2/hordelib/_comfyui/web/extensions/core/dynamicPrompts.js +48 -0
  258. horde_engine-2.9.2/hordelib/_comfyui/web/extensions/core/editAttention.js +144 -0
  259. horde_engine-2.9.2/hordelib/_comfyui/web/extensions/core/groupNode.js +1281 -0
  260. horde_engine-2.9.2/hordelib/_comfyui/web/extensions/core/groupNodeManage.css +149 -0
  261. horde_engine-2.9.2/hordelib/_comfyui/web/extensions/core/groupNodeManage.js +422 -0
  262. horde_engine-2.9.2/hordelib/_comfyui/web/extensions/core/groupOptions.js +259 -0
  263. horde_engine-2.9.2/hordelib/_comfyui/web/extensions/core/invertMenuScrolling.js +36 -0
  264. horde_engine-2.9.2/hordelib/_comfyui/web/extensions/core/keybinds.js +70 -0
  265. horde_engine-2.9.2/hordelib/_comfyui/web/extensions/core/linkRenderMode.js +25 -0
  266. horde_engine-2.9.2/hordelib/_comfyui/web/extensions/core/maskeditor.js +923 -0
  267. horde_engine-2.9.2/hordelib/_comfyui/web/extensions/core/nodeTemplates.js +412 -0
  268. horde_engine-2.9.2/hordelib/_comfyui/web/extensions/core/noteNode.js +41 -0
  269. horde_engine-2.9.2/hordelib/_comfyui/web/extensions/core/rerouteNode.js +274 -0
  270. horde_engine-2.9.2/hordelib/_comfyui/web/extensions/core/saveImageExtraOutput.js +35 -0
  271. horde_engine-2.9.2/hordelib/_comfyui/web/extensions/core/simpleTouchSupport.js +102 -0
  272. horde_engine-2.9.2/hordelib/_comfyui/web/extensions/core/slotDefaults.js +91 -0
  273. horde_engine-2.9.2/hordelib/_comfyui/web/extensions/core/snapToGrid.js +89 -0
  274. horde_engine-2.9.2/hordelib/_comfyui/web/extensions/core/undoRedo.js +177 -0
  275. horde_engine-2.9.2/hordelib/_comfyui/web/extensions/core/uploadImage.js +12 -0
  276. horde_engine-2.9.2/hordelib/_comfyui/web/extensions/core/widgetInputs.js +800 -0
  277. horde_engine-2.9.2/hordelib/_comfyui/web/extensions/logging.js.example +55 -0
  278. horde_engine-2.9.2/hordelib/_comfyui/web/index.html +48 -0
  279. horde_engine-2.9.2/hordelib/_comfyui/web/jsconfig.json +10 -0
  280. horde_engine-2.9.2/hordelib/_comfyui/web/lib/litegraph.core.js +14424 -0
  281. horde_engine-2.9.2/hordelib/_comfyui/web/lib/litegraph.css +693 -0
  282. horde_engine-2.9.2/hordelib/_comfyui/web/lib/litegraph.extensions.js +21 -0
  283. horde_engine-2.9.2/hordelib/_comfyui/web/scripts/api.js +422 -0
  284. horde_engine-2.9.2/hordelib/_comfyui/web/scripts/app.js +2253 -0
  285. horde_engine-2.9.2/hordelib/_comfyui/web/scripts/defaultGraph.js +119 -0
  286. horde_engine-2.9.2/hordelib/_comfyui/web/scripts/domWidget.js +326 -0
  287. horde_engine-2.9.2/hordelib/_comfyui/web/scripts/logging.js +370 -0
  288. horde_engine-2.9.2/hordelib/_comfyui/web/scripts/pnginfo.js +433 -0
  289. horde_engine-2.9.2/hordelib/_comfyui/web/scripts/ui/dialog.js +32 -0
  290. horde_engine-2.9.2/hordelib/_comfyui/web/scripts/ui/draggableList.js +287 -0
  291. horde_engine-2.9.2/hordelib/_comfyui/web/scripts/ui/imagePreview.js +97 -0
  292. horde_engine-2.9.2/hordelib/_comfyui/web/scripts/ui/settings.js +317 -0
  293. horde_engine-2.9.2/hordelib/_comfyui/web/scripts/ui/spinner.css +34 -0
  294. horde_engine-2.9.2/hordelib/_comfyui/web/scripts/ui/spinner.js +9 -0
  295. horde_engine-2.9.2/hordelib/_comfyui/web/scripts/ui/toggleSwitch.js +60 -0
  296. horde_engine-2.9.2/hordelib/_comfyui/web/scripts/ui/userSelection.css +135 -0
  297. horde_engine-2.9.2/hordelib/_comfyui/web/scripts/ui/userSelection.js +114 -0
  298. horde_engine-2.9.2/hordelib/_comfyui/web/scripts/ui.js +642 -0
  299. horde_engine-2.9.2/hordelib/_comfyui/web/scripts/utils.js +88 -0
  300. horde_engine-2.9.2/hordelib/_comfyui/web/scripts/widgets.js +527 -0
  301. horde_engine-2.9.2/hordelib/_comfyui/web/style.css +559 -0
  302. horde_engine-2.9.2/hordelib/_comfyui/web/types/comfy.d.ts +76 -0
  303. horde_engine-2.9.2/hordelib/_comfyui/web/types/litegraph.d.ts +1506 -0
  304. horde_engine-2.9.2/hordelib/_version.py +16 -0
  305. horde_engine-2.9.2/hordelib/benchmark.py +252 -0
  306. horde_engine-2.9.2/hordelib/comfy_horde.py +810 -0
  307. horde_engine-2.9.2/hordelib/config_path.py +27 -0
  308. horde_engine-2.9.2/hordelib/consts.py +85 -0
  309. horde_engine-2.9.2/hordelib/exceptions.py +10 -0
  310. horde_engine-2.9.2/hordelib/horde.py +1364 -0
  311. horde_engine-2.9.2/hordelib/initialisation.py +107 -0
  312. horde_engine-2.9.2/hordelib/install_comfy.py +166 -0
  313. horde_engine-2.9.2/hordelib/model_database/db_dep.json +98 -0
  314. horde_engine-2.9.2/hordelib/model_database/db_embeds.json +43 -0
  315. horde_engine-2.9.2/hordelib/model_database/diffusers.json +31 -0
  316. horde_engine-2.9.2/hordelib/model_database/med_config.json +21 -0
  317. horde_engine-2.9.2/hordelib/model_manager/__init__.py +3 -0
  318. horde_engine-2.9.2/hordelib/nodes/__init__.py +3 -0
  319. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/.gitignore +4 -0
  320. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/LICENSE +201 -0
  321. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/README.md +91 -0
  322. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/__init__.py +364 -0
  323. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/binary/__init__.py +15 -0
  324. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/canny/__init__.py +6 -0
  325. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/color/__init__.py +20 -0
  326. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/hed/__init__.py +150 -0
  327. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/__init__.py +122 -0
  328. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/leres/LICENSE +23 -0
  329. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/leres/Resnet.py +199 -0
  330. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/leres/Resnext_torch.py +248 -0
  331. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/leres/depthmap.py +550 -0
  332. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/leres/multi_depth_model_woauxi.py +33 -0
  333. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/leres/net_tools.py +51 -0
  334. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/leres/network_auxi.py +416 -0
  335. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/LICENSE +19 -0
  336. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/models/__init__.py +67 -0
  337. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/models/base_model.py +244 -0
  338. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/models/base_model_hg.py +58 -0
  339. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/models/networks.py +623 -0
  340. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/models/pix2pix4depth_model.py +155 -0
  341. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/options/__init__.py +1 -0
  342. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/options/base_options.py +156 -0
  343. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/options/test_options.py +22 -0
  344. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/util/__init__.py +1 -0
  345. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/util/get_data.py +110 -0
  346. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/util/guidedfilter.py +47 -0
  347. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/util/html.py +86 -0
  348. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/util/image_pool.py +54 -0
  349. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/util/util.py +105 -0
  350. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/util/visualizer.py +166 -0
  351. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/midas/__init__.py +39 -0
  352. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/midas/api.py +169 -0
  353. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/midas/midas/base_model.py +16 -0
  354. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/midas/midas/blocks.py +341 -0
  355. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/midas/midas/dpt_depth.py +108 -0
  356. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/midas/midas/midas_net.py +76 -0
  357. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/midas/midas/midas_net_custom.py +128 -0
  358. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/midas/midas/transforms.py +234 -0
  359. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/midas/midas/vit.py +491 -0
  360. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/midas/utils.py +189 -0
  361. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/mlsd/__init__.py +41 -0
  362. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/mlsd/models/mbv2_mlsd_large.py +292 -0
  363. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/mlsd/models/mbv2_mlsd_tiny.py +275 -0
  364. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/mlsd/utils.py +581 -0
  365. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/mp_face_mesh/__init__.py +156 -0
  366. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/mp_pose_hand/__init__.py +106 -0
  367. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/openpose/__init__.py +46 -0
  368. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/openpose/body.py +207 -0
  369. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/openpose/hand.py +71 -0
  370. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/openpose/model.py +217 -0
  371. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/openpose/util.py +164 -0
  372. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/pidinet/__init__.py +41 -0
  373. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/pidinet/model.py +638 -0
  374. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/requirements.txt +13 -0
  375. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/__init__.py +30 -0
  376. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/datasets/ade20k.py +54 -0
  377. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/datasets/chase_db1.py +59 -0
  378. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/datasets/cityscapes.py +54 -0
  379. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/datasets/cityscapes_769x769.py +35 -0
  380. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/datasets/drive.py +59 -0
  381. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/datasets/hrf.py +59 -0
  382. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/datasets/pascal_context.py +60 -0
  383. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/datasets/pascal_context_59.py +60 -0
  384. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/datasets/pascal_voc12.py +57 -0
  385. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/datasets/pascal_voc12_aug.py +9 -0
  386. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/datasets/stare.py +59 -0
  387. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/default_runtime.py +14 -0
  388. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/ann_r50-d8.py +46 -0
  389. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/apcnet_r50-d8.py +44 -0
  390. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/ccnet_r50-d8.py +44 -0
  391. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/cgnet.py +35 -0
  392. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/danet_r50-d8.py +44 -0
  393. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/deeplabv3_r50-d8.py +44 -0
  394. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/deeplabv3_unet_s5-d16.py +50 -0
  395. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/deeplabv3plus_r50-d8.py +46 -0
  396. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/dmnet_r50-d8.py +44 -0
  397. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/dnl_r50-d8.py +46 -0
  398. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/emanet_r50-d8.py +47 -0
  399. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/encnet_r50-d8.py +48 -0
  400. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/fast_scnn.py +57 -0
  401. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/fcn_hr18.py +52 -0
  402. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/fcn_r50-d8.py +45 -0
  403. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/fcn_unet_s5-d16.py +51 -0
  404. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/fpn_r50.py +36 -0
  405. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/fpn_uniformer.py +35 -0
  406. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/gcnet_r50-d8.py +46 -0
  407. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/lraspp_m-v3-d8.py +25 -0
  408. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/nonlocal_r50-d8.py +46 -0
  409. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/ocrnet_hr18.py +68 -0
  410. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/ocrnet_r50-d8.py +47 -0
  411. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/pointrend_r50.py +56 -0
  412. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/psanet_r50-d8.py +49 -0
  413. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/pspnet_r50-d8.py +44 -0
  414. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/pspnet_unet_s5-d16.py +50 -0
  415. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/upernet_r50.py +44 -0
  416. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/upernet_uniformer.py +43 -0
  417. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/schedules/schedule_160k.py +9 -0
  418. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/schedules/schedule_20k.py +9 -0
  419. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/schedules/schedule_40k.py +9 -0
  420. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/schedules/schedule_80k.py +9 -0
  421. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/exp/upernet_global_small/config.py +38 -0
  422. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/exp/upernet_global_small/run.sh +10 -0
  423. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/exp/upernet_global_small/test.sh +10 -0
  424. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/exp/upernet_global_small/test_config_g.py +38 -0
  425. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/exp/upernet_global_small/test_config_h32.py +39 -0
  426. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/exp/upernet_global_small/test_config_w32.py +39 -0
  427. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/__init__.py +15 -0
  428. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/arraymisc/__init__.py +4 -0
  429. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/arraymisc/quantization.py +55 -0
  430. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/__init__.py +41 -0
  431. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/alexnet.py +61 -0
  432. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/__init__.py +35 -0
  433. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/activation.py +92 -0
  434. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/context_block.py +125 -0
  435. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/conv.py +44 -0
  436. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/conv2d_adaptive_padding.py +62 -0
  437. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/conv_module.py +206 -0
  438. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/conv_ws.py +148 -0
  439. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/depthwise_separable_conv_module.py +96 -0
  440. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/drop.py +64 -0
  441. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/generalized_attention.py +412 -0
  442. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/hsigmoid.py +34 -0
  443. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/hswish.py +29 -0
  444. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/non_local.py +306 -0
  445. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/norm.py +147 -0
  446. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/padding.py +36 -0
  447. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/plugin.py +88 -0
  448. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/registry.py +17 -0
  449. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/scale.py +21 -0
  450. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/swish.py +25 -0
  451. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/transformer.py +605 -0
  452. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/upsample.py +84 -0
  453. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/wrappers.py +180 -0
  454. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/builder.py +29 -0
  455. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/resnet.py +316 -0
  456. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/utils/__init__.py +19 -0
  457. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/utils/flops_counter.py +578 -0
  458. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/utils/fuse_conv_bn.py +59 -0
  459. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/utils/sync_bn.py +59 -0
  460. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/utils/weight_init.py +643 -0
  461. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/vgg.py +175 -0
  462. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/engine/__init__.py +8 -0
  463. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/engine/test.py +195 -0
  464. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/fileio/__init__.py +11 -0
  465. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/fileio/file_client.py +1127 -0
  466. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/fileio/handlers/__init__.py +7 -0
  467. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/fileio/handlers/base.py +30 -0
  468. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/fileio/handlers/json_handler.py +36 -0
  469. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/fileio/handlers/pickle_handler.py +28 -0
  470. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/fileio/handlers/yaml_handler.py +24 -0
  471. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/fileio/io.py +151 -0
  472. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/fileio/parse.py +97 -0
  473. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/image/__init__.py +28 -0
  474. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/image/colorspace.py +306 -0
  475. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/image/geometric.py +728 -0
  476. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/image/io.py +256 -0
  477. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/image/misc.py +43 -0
  478. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/image/photometric.py +428 -0
  479. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/model_zoo/deprecated.json +6 -0
  480. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/model_zoo/mmcls.json +31 -0
  481. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/model_zoo/open_mmlab.json +50 -0
  482. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/__init__.py +81 -0
  483. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/assign_score_withk.py +123 -0
  484. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/ball_query.py +55 -0
  485. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/bbox.py +72 -0
  486. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/border_align.py +109 -0
  487. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/box_iou_rotated.py +45 -0
  488. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/carafe.py +287 -0
  489. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/cc_attention.py +81 -0
  490. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/contour_expand.py +49 -0
  491. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/corner_pool.py +161 -0
  492. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/correlation.py +196 -0
  493. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/deform_conv.py +406 -0
  494. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/deform_roi_pool.py +204 -0
  495. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/deprecated_wrappers.py +43 -0
  496. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/focal_loss.py +212 -0
  497. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/furthest_point_sample.py +83 -0
  498. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/fused_bias_leakyrelu.py +268 -0
  499. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/gather_points.py +57 -0
  500. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/group_points.py +224 -0
  501. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/info.py +36 -0
  502. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/iou3d.py +85 -0
  503. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/knn.py +77 -0
  504. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/masked_conv.py +111 -0
  505. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/merge_cells.py +149 -0
  506. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/modulated_deform_conv.py +280 -0
  507. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/multi_scale_deform_attn.py +348 -0
  508. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/nms.py +383 -0
  509. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/pixel_group.py +75 -0
  510. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/point_sample.py +317 -0
  511. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/points_in_boxes.py +133 -0
  512. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/points_sampler.py +168 -0
  513. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/psa_mask.py +92 -0
  514. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/roi_align.py +223 -0
  515. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/roi_align_rotated.py +177 -0
  516. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/roi_pool.py +86 -0
  517. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/roiaware_pool3d.py +100 -0
  518. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/roipoint_pool3d.py +77 -0
  519. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/saconv.py +128 -0
  520. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/scatter_points.py +135 -0
  521. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/sync_bn.py +288 -0
  522. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/three_interpolate.py +68 -0
  523. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/three_nn.py +51 -0
  524. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/tin_shift.py +68 -0
  525. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/upfirdn2d.py +320 -0
  526. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/voxelize.py +132 -0
  527. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/parallel/__init__.py +13 -0
  528. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/parallel/_functions.py +79 -0
  529. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/parallel/collate.py +84 -0
  530. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/parallel/data_container.py +89 -0
  531. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/parallel/data_parallel.py +89 -0
  532. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/parallel/distributed.py +105 -0
  533. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/parallel/distributed_deprecated.py +57 -0
  534. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/parallel/registry.py +9 -0
  535. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/parallel/scatter_gather.py +59 -0
  536. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/parallel/utils.py +20 -0
  537. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/__init__.py +47 -0
  538. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/base_module.py +194 -0
  539. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/base_runner.py +515 -0
  540. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/builder.py +22 -0
  541. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/checkpoint.py +670 -0
  542. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/default_constructor.py +43 -0
  543. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/dist_utils.py +164 -0
  544. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/epoch_based_runner.py +172 -0
  545. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/fp16_utils.py +388 -0
  546. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/__init__.py +29 -0
  547. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/checkpoint.py +156 -0
  548. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/closure.py +11 -0
  549. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/ema.py +89 -0
  550. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/evaluation.py +492 -0
  551. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/hook.py +101 -0
  552. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/iter_timer.py +18 -0
  553. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/logger/__init__.py +15 -0
  554. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/logger/base.py +166 -0
  555. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/logger/dvclive.py +58 -0
  556. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/logger/mlflow.py +78 -0
  557. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/logger/neptune.py +82 -0
  558. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/logger/pavi.py +113 -0
  559. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/logger/tensorboard.py +49 -0
  560. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/logger/text.py +235 -0
  561. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/logger/wandb.py +56 -0
  562. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/lr_updater.py +615 -0
  563. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/memory.py +25 -0
  564. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/momentum_updater.py +421 -0
  565. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/optimizer.py +457 -0
  566. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/profiler.py +180 -0
  567. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/sampler_seed.py +20 -0
  568. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/sync_buffer.py +22 -0
  569. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/iter_based_runner.py +256 -0
  570. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/log_buffer.py +41 -0
  571. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/optimizer/__init__.py +9 -0
  572. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/optimizer/builder.py +41 -0
  573. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/optimizer/default_constructor.py +245 -0
  574. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/priority.py +60 -0
  575. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/utils.py +92 -0
  576. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/__init__.py +69 -0
  577. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/config.py +649 -0
  578. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/env.py +99 -0
  579. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/ext_loader.py +71 -0
  580. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/logging.py +110 -0
  581. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/misc.py +377 -0
  582. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/parrots_jit.py +41 -0
  583. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/parrots_wrapper.py +107 -0
  584. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/path.py +101 -0
  585. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/progressbar.py +208 -0
  586. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/registry.py +304 -0
  587. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/testing.py +140 -0
  588. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/timer.py +117 -0
  589. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/trace.py +24 -0
  590. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/version_utils.py +90 -0
  591. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/version.py +35 -0
  592. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/video/__init__.py +11 -0
  593. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/video/io.py +310 -0
  594. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/video/optflow.py +248 -0
  595. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/video/processing.py +128 -0
  596. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/visualization/__init__.py +9 -0
  597. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/visualization/color.py +52 -0
  598. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/visualization/image.py +144 -0
  599. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/visualization/optflow.py +109 -0
  600. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv_custom/__init__.py +5 -0
  601. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv_custom/checkpoint.py +477 -0
  602. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/apis/__init__.py +9 -0
  603. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/apis/inference.py +126 -0
  604. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/apis/test.py +216 -0
  605. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/apis/train.py +109 -0
  606. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/core/__init__.py +3 -0
  607. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/core/evaluation/__init__.py +8 -0
  608. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/core/evaluation/class_names.py +458 -0
  609. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/core/evaluation/eval_hooks.py +108 -0
  610. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/core/evaluation/metrics.py +296 -0
  611. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/core/seg/__init__.py +4 -0
  612. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/core/seg/builder.py +9 -0
  613. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/core/seg/sampler/__init__.py +4 -0
  614. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/core/seg/sampler/base_pixel_sampler.py +12 -0
  615. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/core/seg/sampler/ohem_pixel_sampler.py +76 -0
  616. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/core/utils/__init__.py +3 -0
  617. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/core/utils/misc.py +17 -0
  618. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/__init__.py +19 -0
  619. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/ade.py +84 -0
  620. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/builder.py +175 -0
  621. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/chase_db1.py +27 -0
  622. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/cityscapes.py +240 -0
  623. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/custom.py +372 -0
  624. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/dataset_wrappers.py +50 -0
  625. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/drive.py +27 -0
  626. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/hrf.py +27 -0
  627. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/pascal_context.py +103 -0
  628. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/pipelines/__init__.py +16 -0
  629. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/pipelines/compose.py +51 -0
  630. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/pipelines/formating.py +293 -0
  631. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/pipelines/loading.py +144 -0
  632. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/pipelines/test_time_aug.py +118 -0
  633. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/pipelines/transforms.py +838 -0
  634. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/stare.py +27 -0
  635. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/voc.py +29 -0
  636. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/__init__.py +12 -0
  637. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/backbones/__init__.py +17 -0
  638. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/backbones/cgnet.py +360 -0
  639. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/backbones/fast_scnn.py +353 -0
  640. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/backbones/hrnet.py +535 -0
  641. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/backbones/mobilenet_v2.py +182 -0
  642. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/backbones/mobilenet_v3.py +266 -0
  643. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/backbones/resnest.py +299 -0
  644. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/backbones/resnet.py +649 -0
  645. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/backbones/resnext.py +124 -0
  646. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/backbones/unet.py +450 -0
  647. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/backbones/uniformer.py +552 -0
  648. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/backbones/vit.py +442 -0
  649. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/builder.py +44 -0
  650. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/__init__.py +28 -0
  651. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/ann_head.py +259 -0
  652. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/apc_head.py +141 -0
  653. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/aspp_head.py +106 -0
  654. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/cascade_decode_head.py +57 -0
  655. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/cc_head.py +41 -0
  656. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/da_head.py +173 -0
  657. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/decode_head.py +226 -0
  658. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/dm_head.py +136 -0
  659. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/dnl_head.py +125 -0
  660. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/ema_head.py +155 -0
  661. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/enc_head.py +174 -0
  662. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/fcn_head.py +81 -0
  663. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/fpn_head.py +60 -0
  664. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/gc_head.py +41 -0
  665. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/lraspp_head.py +77 -0
  666. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/nl_head.py +46 -0
  667. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/ocr_head.py +124 -0
  668. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/point_head.py +312 -0
  669. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/psa_head.py +186 -0
  670. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/psp_head.py +101 -0
  671. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/sep_aspp_head.py +82 -0
  672. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/sep_fcn_head.py +54 -0
  673. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/uper_head.py +118 -0
  674. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/losses/__init__.py +12 -0
  675. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/losses/accuracy.py +78 -0
  676. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/losses/cross_entropy_loss.py +198 -0
  677. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/losses/dice_loss.py +119 -0
  678. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/losses/lovasz_loss.py +303 -0
  679. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/losses/utils.py +116 -0
  680. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/necks/__init__.py +4 -0
  681. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/necks/fpn.py +210 -0
  682. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/necks/multilevel_neck.py +53 -0
  683. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/segmentors/__init__.py +5 -0
  684. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/segmentors/base.py +255 -0
  685. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/segmentors/cascade_encoder_decoder.py +95 -0
  686. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/segmentors/encoder_decoder.py +275 -0
  687. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/utils/__init__.py +13 -0
  688. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/utils/drop.py +31 -0
  689. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/utils/inverted_residual.py +217 -0
  690. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/utils/make_divisible.py +27 -0
  691. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/utils/res_layer.py +95 -0
  692. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/utils/se_layer.py +60 -0
  693. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/utils/self_attention_block.py +161 -0
  694. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/utils/up_conv_block.py +106 -0
  695. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/utils/weight_init.py +62 -0
  696. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/ops/__init__.py +4 -0
  697. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/ops/encoding.py +74 -0
  698. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/ops/wrappers.py +50 -0
  699. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/utils/__init__.py +4 -0
  700. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/utils/collect_env.py +17 -0
  701. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/utils/logger.py +27 -0
  702. horde_engine-2.9.2/hordelib/nodes/comfy_controlnet_preprocessors/util.py +161 -0
  703. horde_engine-2.9.2/hordelib/nodes/facerestore/__init__.py +204 -0
  704. horde_engine-2.9.2/hordelib/nodes/facerestore/facelib/detection/__init__.py +116 -0
  705. horde_engine-2.9.2/hordelib/nodes/facerestore/facelib/detection/align_trans.py +219 -0
  706. horde_engine-2.9.2/hordelib/nodes/facerestore/facelib/detection/matlab_cp2tform.py +317 -0
  707. horde_engine-2.9.2/hordelib/nodes/facerestore/facelib/detection/retinaface/retinaface.py +420 -0
  708. horde_engine-2.9.2/hordelib/nodes/facerestore/facelib/detection/retinaface/retinaface_net.py +196 -0
  709. horde_engine-2.9.2/hordelib/nodes/facerestore/facelib/detection/retinaface/retinaface_utils.py +421 -0
  710. horde_engine-2.9.2/hordelib/nodes/facerestore/facelib/detection/yolov5face/face_detector.py +175 -0
  711. horde_engine-2.9.2/hordelib/nodes/facerestore/facelib/detection/yolov5face/models/common.py +324 -0
  712. horde_engine-2.9.2/hordelib/nodes/facerestore/facelib/detection/yolov5face/models/experimental.py +52 -0
  713. horde_engine-2.9.2/hordelib/nodes/facerestore/facelib/detection/yolov5face/models/yolo.py +300 -0
  714. horde_engine-2.9.2/hordelib/nodes/facerestore/facelib/detection/yolov5face/models/yolov5l.yaml +47 -0
  715. horde_engine-2.9.2/hordelib/nodes/facerestore/facelib/detection/yolov5face/models/yolov5n.yaml +45 -0
  716. horde_engine-2.9.2/hordelib/nodes/facerestore/facelib/detection/yolov5face/utils/autoanchor.py +12 -0
  717. horde_engine-2.9.2/hordelib/nodes/facerestore/facelib/detection/yolov5face/utils/datasets.py +35 -0
  718. horde_engine-2.9.2/hordelib/nodes/facerestore/facelib/detection/yolov5face/utils/extract_ckpt.py +5 -0
  719. horde_engine-2.9.2/hordelib/nodes/facerestore/facelib/detection/yolov5face/utils/general.py +271 -0
  720. horde_engine-2.9.2/hordelib/nodes/facerestore/facelib/detection/yolov5face/utils/torch_utils.py +40 -0
  721. horde_engine-2.9.2/hordelib/nodes/facerestore/facelib/parsing/__init__.py +28 -0
  722. horde_engine-2.9.2/hordelib/nodes/facerestore/facelib/parsing/bisenet.py +140 -0
  723. horde_engine-2.9.2/hordelib/nodes/facerestore/facelib/parsing/parsenet.py +194 -0
  724. horde_engine-2.9.2/hordelib/nodes/facerestore/facelib/parsing/resnet.py +69 -0
  725. horde_engine-2.9.2/hordelib/nodes/facerestore/facelib/utils/__init__.py +7 -0
  726. horde_engine-2.9.2/hordelib/nodes/facerestore/facelib/utils/face_restoration_helper.py +561 -0
  727. horde_engine-2.9.2/hordelib/nodes/facerestore/facelib/utils/face_utils.py +283 -0
  728. horde_engine-2.9.2/hordelib/nodes/facerestore/facelib/utils/misc.py +143 -0
  729. horde_engine-2.9.2/hordelib/nodes/node_controlnet_model_loader.py +35 -0
  730. horde_engine-2.9.2/hordelib/nodes/node_image_loader.py +42 -0
  731. horde_engine-2.9.2/hordelib/nodes/node_image_output.py +56 -0
  732. horde_engine-2.9.2/hordelib/nodes/node_lora_loader.py +73 -0
  733. horde_engine-2.9.2/hordelib/nodes/node_model_loader.py +147 -0
  734. horde_engine-2.9.2/hordelib/nodes/node_upscale_model_loader.py +29 -0
  735. horde_engine-2.9.2/hordelib/pipeline_designs/pipeline_controlnet.json +940 -0
  736. horde_engine-2.9.2/hordelib/pipeline_designs/pipeline_controlnet_annotator.json +537 -0
  737. horde_engine-2.9.2/hordelib/pipeline_designs/pipeline_controlnet_hires_fix.json +1085 -0
  738. horde_engine-2.9.2/hordelib/pipeline_designs/pipeline_image_facefix.json +177 -0
  739. horde_engine-2.9.2/hordelib/pipeline_designs/pipeline_image_upscale.json +173 -0
  740. horde_engine-2.9.2/hordelib/pipeline_designs/pipeline_stable_cascade.json +811 -0
  741. horde_engine-2.9.2/hordelib/pipeline_designs/pipeline_stable_cascade_remix.json +780 -0
  742. horde_engine-2.9.2/hordelib/pipeline_designs/pipeline_stable_diffusion.json +563 -0
  743. horde_engine-2.9.2/hordelib/pipeline_designs/pipeline_stable_diffusion_hires_fix.json +756 -0
  744. horde_engine-2.9.2/hordelib/pipeline_designs/pipeline_stable_diffusion_img2img_mask.json +625 -0
  745. horde_engine-2.9.2/hordelib/pipeline_designs/pipeline_stable_diffusion_paint.json +581 -0
  746. horde_engine-2.9.2/hordelib/pipelines/pipeline_controlnet.json +212 -0
  747. horde_engine-2.9.2/hordelib/pipelines/pipeline_controlnet_annotator.json +110 -0
  748. horde_engine-2.9.2/hordelib/pipelines/pipeline_controlnet_hires_fix.json +252 -0
  749. horde_engine-2.9.2/hordelib/pipelines/pipeline_image_facefix.json +39 -0
  750. horde_engine-2.9.2/hordelib/pipelines/pipeline_image_upscale.json +38 -0
  751. horde_engine-2.9.2/hordelib/pipelines/pipeline_stable_cascade.json +215 -0
  752. horde_engine-2.9.2/hordelib/pipelines/pipeline_stable_cascade_remix.json +207 -0
  753. horde_engine-2.9.2/hordelib/pipelines/pipeline_stable_diffusion.json +127 -0
  754. horde_engine-2.9.2/hordelib/pipelines/pipeline_stable_diffusion_hires_fix.json +167 -0
  755. horde_engine-2.9.2/hordelib/pipelines/pipeline_stable_diffusion_img2img_mask.json +140 -0
  756. horde_engine-2.9.2/hordelib/pipelines/pipeline_stable_diffusion_paint.json +132 -0
  757. horde_engine-2.9.2/hordelib/preload.py +53 -0
  758. horde_engine-2.9.2/hordelib/pyinstaller_hooks/hook-hordelib.horde.py +53 -0
  759. horde_engine-2.9.2/hordelib/settings.py +149 -0
  760. horde_engine-2.9.2/hordelib/shared_model_manager.py +229 -0
  761. horde_engine-2.9.2/hordelib/train.py +384 -0
  762. horde_engine-2.9.2/hordelib/utils/distance.py +333 -0
  763. horde_engine-2.9.2/hordelib/utils/dynamicprompt.py +26 -0
  764. horde_engine-2.9.2/hordelib/utils/gpuinfo.py +199 -0
  765. horde_engine-2.9.2/hordelib/utils/image_utils.py +160 -0
  766. horde_engine-2.9.2/hordelib/utils/ioredirect.py +160 -0
  767. horde_engine-2.9.2/hordelib/utils/logger.py +167 -0
  768. horde_engine-2.9.2/hordelib/utils/sanitizer.py +38 -0
  769. horde_engine-2.9.2/mypy.ini +40 -0
  770. horde_engine-2.9.2/pyinstaller.py +21 -0
  771. horde_engine-2.9.2/pyinstaller_test_entrypoint.py +36 -0
  772. horde_engine-2.9.2/pyproject.toml +120 -0
  773. horde_engine-2.9.2/requirements.dev.txt +24 -0
  774. horde_engine-2.9.2/requirements.txt +48 -0
  775. horde_engine-2.9.2/setup.cfg +9 -0
  776. horde_engine-2.9.2/tests/conftest.py +277 -0
  777. horde_engine-2.9.2/tests/meta/test_packaging_errors.py +9 -0
  778. horde_engine-2.9.2/tests/model_managers/test_mm_compvis.py +14 -0
  779. horde_engine-2.9.2/tests/model_managers/test_mm_lora.py +285 -0
  780. horde_engine-2.9.2/tests/model_managers/test_mm_safety_checker.py +9 -0
  781. horde_engine-2.9.2/tests/model_managers/test_mm_ti.py +48 -0
  782. horde_engine-2.9.2/tests/model_managers/test_shared_model_manager.py +200 -0
  783. horde_engine-2.9.2/tests/test_comfy.py +185 -0
  784. horde_engine-2.9.2/tests/test_cuda.py +13 -0
  785. horde_engine-2.9.2/tests/test_dynamic_prompt.py +33 -0
  786. horde_engine-2.9.2/tests/test_horde_controlnet_annotator.py +63 -0
  787. horde_engine-2.9.2/tests/test_horde_inference.py +458 -0
  788. horde_engine-2.9.2/tests/test_horde_inference_cascade.py +321 -0
  789. horde_engine-2.9.2/tests/test_horde_inference_controlnet.py +275 -0
  790. horde_engine-2.9.2/tests/test_horde_inference_custom_model.py +54 -0
  791. horde_engine-2.9.2/tests/test_horde_inference_img2img.py +542 -0
  792. horde_engine-2.9.2/tests/test_horde_inference_painting.py +484 -0
  793. horde_engine-2.9.2/tests/test_horde_lcm.py +205 -0
  794. horde_engine-2.9.2/tests/test_horde_lora.py +992 -0
  795. horde_engine-2.9.2/tests/test_horde_pp.py +196 -0
  796. horde_engine-2.9.2/tests/test_horde_samplers.py +179 -0
  797. horde_engine-2.9.2/tests/test_horde_ti.py +168 -0
  798. horde_engine-2.9.2/tests/test_image_metadata.py +41 -0
  799. horde_engine-2.9.2/tests/test_inference.py +149 -0
  800. horde_engine-2.9.2/tests/test_initialisation.py +19 -0
  801. horde_engine-2.9.2/tests/test_internal_comfyui_failures.py +53 -0
  802. horde_engine-2.9.2/tests/test_payload_mapping.py +47 -0
  803. horde_engine-2.9.2/tests/test_safety_checker.py +8 -0
  804. horde_engine-2.9.2/tests/test_utils.py +66 -0
  805. horde_engine-2.9.2/tests/testing_shared_functions.py +242 -0
  806. horde_engine-2.9.2/tox.ini +91 -0
  807. horde_engine-2.8.2/.changelog +0 -32
  808. horde_engine-2.8.2/.git-blame-ignore-revs +0 -13
  809. horde_engine-2.8.2/.github/dependabot.yml +0 -11
  810. horde_engine-2.8.2/.github/workflows/maintests.yml +0 -59
  811. horde_engine-2.8.2/.github/workflows/prtests.yml +0 -64
  812. horde_engine-2.8.2/.github/workflows/release.yml +0 -110
  813. horde_engine-2.8.2/.gitignore +0 -169
  814. horde_engine-2.8.2/.pre-commit-config.yaml +0 -22
  815. horde_engine-2.8.2/LICENSE +0 -661
  816. horde_engine-2.8.2/MANIFEST.in +0 -12
  817. horde_engine-2.8.2/PKG-INFO +0 -994
  818. horde_engine-2.8.2/README.md +0 -274
  819. horde_engine-2.8.2/build_helper.py +0 -110
  820. horde_engine-2.8.2/examples/download_all_sd_models.py +0 -13
  821. horde_engine-2.8.2/examples/kudos.py +0 -230
  822. horde_engine-2.8.2/examples/lora_downloader.py +0 -300
  823. horde_engine-2.8.2/examples/make_index.py +0 -106
  824. horde_engine-2.8.2/examples/make_index_all_models.py +0 -112
  825. horde_engine-2.8.2/examples/run_all_models.py +0 -78
  826. horde_engine-2.8.2/examples/run_all_stress_tests.py +0 -47
  827. horde_engine-2.8.2/examples/run_controlnet.py +0 -52
  828. horde_engine-2.8.2/examples/run_controlnet_annotator.py +0 -51
  829. horde_engine-2.8.2/examples/run_facefix.py +0 -40
  830. horde_engine-2.8.2/examples/run_img2img.py +0 -46
  831. horde_engine-2.8.2/examples/run_img2img_hires.py +0 -46
  832. horde_engine-2.8.2/examples/run_img2img_inpaint.py +0 -47
  833. horde_engine-2.8.2/examples/run_img2img_inpaint_mask.py +0 -48
  834. horde_engine-2.8.2/examples/run_img2img_mask.py +0 -48
  835. horde_engine-2.8.2/examples/run_img2img_outpaint.py +0 -47
  836. horde_engine-2.8.2/examples/run_inpainting.py +0 -47
  837. horde_engine-2.8.2/examples/run_kudos_test.py +0 -163
  838. horde_engine-2.8.2/examples/run_long_prompt_check.py +0 -126
  839. horde_engine-2.8.2/examples/run_lora.py +0 -54
  840. horde_engine-2.8.2/examples/run_memory_test.py +0 -181
  841. horde_engine-2.8.2/examples/run_sdk_inference_example.py +0 -66
  842. horde_engine-2.8.2/examples/run_stress_test_cnet.py +0 -136
  843. horde_engine-2.8.2/examples/run_stress_test_cnet_preproc.py +0 -119
  844. horde_engine-2.8.2/examples/run_stress_test_dynamic.py +0 -206
  845. horde_engine-2.8.2/examples/run_stress_test_img2img.py +0 -135
  846. horde_engine-2.8.2/examples/run_stress_test_job_collection.py +0 -395
  847. horde_engine-2.8.2/examples/run_stress_test_mixed.py +0 -233
  848. horde_engine-2.8.2/examples/run_stress_test_pp.py +0 -129
  849. horde_engine-2.8.2/examples/run_stress_test_txt2img.py +0 -134
  850. horde_engine-2.8.2/examples/run_stress_test_txt2img_hiresfix.py +0 -134
  851. horde_engine-2.8.2/examples/run_txt2img.py +0 -43
  852. horde_engine-2.8.2/examples/run_txt2img_hires.py +0 -43
  853. horde_engine-2.8.2/examples/run_txt2img_local_model.py +0 -48
  854. horde_engine-2.8.2/examples/run_upscale.py +0 -40
  855. horde_engine-2.8.2/horde_engine.egg-info/PKG-INFO +0 -994
  856. horde_engine-2.8.2/horde_engine.egg-info/SOURCES.txt +0 -983
  857. horde_engine-2.8.2/hordelib/__init__.py +0 -12
  858. horde_engine-2.8.2/hordelib/__pyinstaller.py +0 -10
  859. horde_engine-2.8.2/hordelib/_comfyui/.gitignore +0 -18
  860. horde_engine-2.8.2/hordelib/_comfyui/CODEOWNERS +0 -1
  861. horde_engine-2.8.2/hordelib/_comfyui/LICENSE +0 -674
  862. horde_engine-2.8.2/hordelib/_comfyui/README.md +0 -224
  863. horde_engine-2.8.2/hordelib/_comfyui/__pycache__/cuda_malloc.cpython-310.pyc +0 -0
  864. horde_engine-2.8.2/hordelib/_comfyui/__pycache__/execution.cpython-310.pyc +0 -0
  865. horde_engine-2.8.2/hordelib/_comfyui/__pycache__/folder_paths.cpython-310.pyc +0 -0
  866. horde_engine-2.8.2/hordelib/_comfyui/__pycache__/latent_preview.cpython-310.pyc +0 -0
  867. horde_engine-2.8.2/hordelib/_comfyui/__pycache__/node_helpers.cpython-310.pyc +0 -0
  868. horde_engine-2.8.2/hordelib/_comfyui/__pycache__/nodes.cpython-310.pyc +0 -0
  869. horde_engine-2.8.2/hordelib/_comfyui/__pycache__/server.cpython-310.pyc +0 -0
  870. horde_engine-2.8.2/hordelib/_comfyui/app/__pycache__/app_settings.cpython-310.pyc +0 -0
  871. horde_engine-2.8.2/hordelib/_comfyui/app/__pycache__/user_manager.cpython-310.pyc +0 -0
  872. horde_engine-2.8.2/hordelib/_comfyui/app/app_settings.py +0 -54
  873. horde_engine-2.8.2/hordelib/_comfyui/app/user_manager.py +0 -140
  874. horde_engine-2.8.2/hordelib/_comfyui/comfy/__pycache__/checkpoint_pickle.cpython-310.pyc +0 -0
  875. horde_engine-2.8.2/hordelib/_comfyui/comfy/__pycache__/cli_args.cpython-310.pyc +0 -0
  876. horde_engine-2.8.2/hordelib/_comfyui/comfy/__pycache__/clip_model.cpython-310.pyc +0 -0
  877. horde_engine-2.8.2/hordelib/_comfyui/comfy/__pycache__/clip_vision.cpython-310.pyc +0 -0
  878. horde_engine-2.8.2/hordelib/_comfyui/comfy/__pycache__/conds.cpython-310.pyc +0 -0
  879. horde_engine-2.8.2/hordelib/_comfyui/comfy/__pycache__/controlnet.cpython-310.pyc +0 -0
  880. horde_engine-2.8.2/hordelib/_comfyui/comfy/__pycache__/diffusers_convert.cpython-310.pyc +0 -0
  881. horde_engine-2.8.2/hordelib/_comfyui/comfy/__pycache__/diffusers_load.cpython-310.pyc +0 -0
  882. horde_engine-2.8.2/hordelib/_comfyui/comfy/__pycache__/gligen.cpython-310.pyc +0 -0
  883. horde_engine-2.8.2/hordelib/_comfyui/comfy/__pycache__/latent_formats.cpython-310.pyc +0 -0
  884. horde_engine-2.8.2/hordelib/_comfyui/comfy/__pycache__/lora.cpython-310.pyc +0 -0
  885. horde_engine-2.8.2/hordelib/_comfyui/comfy/__pycache__/model_base.cpython-310.pyc +0 -0
  886. horde_engine-2.8.2/hordelib/_comfyui/comfy/__pycache__/model_detection.cpython-310.pyc +0 -0
  887. horde_engine-2.8.2/hordelib/_comfyui/comfy/__pycache__/model_management.cpython-310.pyc +0 -0
  888. horde_engine-2.8.2/hordelib/_comfyui/comfy/__pycache__/model_patcher.cpython-310.pyc +0 -0
  889. horde_engine-2.8.2/hordelib/_comfyui/comfy/__pycache__/model_sampling.cpython-310.pyc +0 -0
  890. horde_engine-2.8.2/hordelib/_comfyui/comfy/__pycache__/ops.cpython-310.pyc +0 -0
  891. horde_engine-2.8.2/hordelib/_comfyui/comfy/__pycache__/options.cpython-310.pyc +0 -0
  892. horde_engine-2.8.2/hordelib/_comfyui/comfy/__pycache__/sample.cpython-310.pyc +0 -0
  893. horde_engine-2.8.2/hordelib/_comfyui/comfy/__pycache__/sampler_helpers.cpython-310.pyc +0 -0
  894. horde_engine-2.8.2/hordelib/_comfyui/comfy/__pycache__/samplers.cpython-310.pyc +0 -0
  895. horde_engine-2.8.2/hordelib/_comfyui/comfy/__pycache__/sd.cpython-310.pyc +0 -0
  896. horde_engine-2.8.2/hordelib/_comfyui/comfy/__pycache__/sd1_clip.cpython-310.pyc +0 -0
  897. horde_engine-2.8.2/hordelib/_comfyui/comfy/__pycache__/sd2_clip.cpython-310.pyc +0 -0
  898. horde_engine-2.8.2/hordelib/_comfyui/comfy/__pycache__/sdxl_clip.cpython-310.pyc +0 -0
  899. horde_engine-2.8.2/hordelib/_comfyui/comfy/__pycache__/supported_models.cpython-310.pyc +0 -0
  900. horde_engine-2.8.2/hordelib/_comfyui/comfy/__pycache__/supported_models_base.cpython-310.pyc +0 -0
  901. horde_engine-2.8.2/hordelib/_comfyui/comfy/__pycache__/utils.cpython-310.pyc +0 -0
  902. horde_engine-2.8.2/hordelib/_comfyui/comfy/checkpoint_pickle.py +0 -13
  903. horde_engine-2.8.2/hordelib/_comfyui/comfy/cldm/__pycache__/cldm.cpython-310.pyc +0 -0
  904. horde_engine-2.8.2/hordelib/_comfyui/comfy/cldm/cldm.py +0 -312
  905. horde_engine-2.8.2/hordelib/_comfyui/comfy/cli_args.py +0 -136
  906. horde_engine-2.8.2/hordelib/_comfyui/comfy/clip_config_bigg.json +0 -23
  907. horde_engine-2.8.2/hordelib/_comfyui/comfy/clip_model.py +0 -194
  908. horde_engine-2.8.2/hordelib/_comfyui/comfy/clip_vision.py +0 -117
  909. horde_engine-2.8.2/hordelib/_comfyui/comfy/clip_vision_config_g.json +0 -18
  910. horde_engine-2.8.2/hordelib/_comfyui/comfy/clip_vision_config_h.json +0 -18
  911. horde_engine-2.8.2/hordelib/_comfyui/comfy/clip_vision_config_vitl.json +0 -18
  912. horde_engine-2.8.2/hordelib/_comfyui/comfy/conds.py +0 -78
  913. horde_engine-2.8.2/hordelib/_comfyui/comfy/controlnet.py +0 -554
  914. horde_engine-2.8.2/hordelib/_comfyui/comfy/diffusers_convert.py +0 -281
  915. horde_engine-2.8.2/hordelib/_comfyui/comfy/diffusers_load.py +0 -36
  916. horde_engine-2.8.2/hordelib/_comfyui/comfy/extra_samplers/__pycache__/uni_pc.cpython-310.pyc +0 -0
  917. horde_engine-2.8.2/hordelib/_comfyui/comfy/extra_samplers/uni_pc.py +0 -875
  918. horde_engine-2.8.2/hordelib/_comfyui/comfy/gligen.py +0 -343
  919. horde_engine-2.8.2/hordelib/_comfyui/comfy/k_diffusion/__pycache__/sampling.cpython-310.pyc +0 -0
  920. horde_engine-2.8.2/hordelib/_comfyui/comfy/k_diffusion/__pycache__/utils.cpython-310.pyc +0 -0
  921. horde_engine-2.8.2/hordelib/_comfyui/comfy/k_diffusion/sampling.py +0 -810
  922. horde_engine-2.8.2/hordelib/_comfyui/comfy/k_diffusion/utils.py +0 -313
  923. horde_engine-2.8.2/hordelib/_comfyui/comfy/latent_formats.py +0 -104
  924. horde_engine-2.8.2/hordelib/_comfyui/comfy/ldm/__pycache__/util.cpython-310.pyc +0 -0
  925. horde_engine-2.8.2/hordelib/_comfyui/comfy/ldm/cascade/__pycache__/common.cpython-310.pyc +0 -0
  926. horde_engine-2.8.2/hordelib/_comfyui/comfy/ldm/cascade/__pycache__/controlnet.cpython-310.pyc +0 -0
  927. horde_engine-2.8.2/hordelib/_comfyui/comfy/ldm/cascade/__pycache__/stage_a.cpython-310.pyc +0 -0
  928. horde_engine-2.8.2/hordelib/_comfyui/comfy/ldm/cascade/__pycache__/stage_b.cpython-310.pyc +0 -0
  929. horde_engine-2.8.2/hordelib/_comfyui/comfy/ldm/cascade/__pycache__/stage_c.cpython-310.pyc +0 -0
  930. horde_engine-2.8.2/hordelib/_comfyui/comfy/ldm/cascade/__pycache__/stage_c_coder.cpython-310.pyc +0 -0
  931. horde_engine-2.8.2/hordelib/_comfyui/comfy/ldm/cascade/common.py +0 -161
  932. horde_engine-2.8.2/hordelib/_comfyui/comfy/ldm/cascade/controlnet.py +0 -93
  933. horde_engine-2.8.2/hordelib/_comfyui/comfy/ldm/cascade/stage_a.py +0 -255
  934. horde_engine-2.8.2/hordelib/_comfyui/comfy/ldm/cascade/stage_b.py +0 -257
  935. horde_engine-2.8.2/hordelib/_comfyui/comfy/ldm/cascade/stage_c.py +0 -274
  936. horde_engine-2.8.2/hordelib/_comfyui/comfy/ldm/cascade/stage_c_coder.py +0 -95
  937. horde_engine-2.8.2/hordelib/_comfyui/comfy/ldm/models/__pycache__/autoencoder.cpython-310.pyc +0 -0
  938. horde_engine-2.8.2/hordelib/_comfyui/comfy/ldm/models/autoencoder.py +0 -228
  939. horde_engine-2.8.2/hordelib/_comfyui/comfy/ldm/modules/__pycache__/attention.cpython-310.pyc +0 -0
  940. horde_engine-2.8.2/hordelib/_comfyui/comfy/ldm/modules/__pycache__/ema.cpython-310.pyc +0 -0
  941. horde_engine-2.8.2/hordelib/_comfyui/comfy/ldm/modules/__pycache__/sub_quadratic_attention.cpython-310.pyc +0 -0
  942. horde_engine-2.8.2/hordelib/_comfyui/comfy/ldm/modules/attention.py +0 -801
  943. horde_engine-2.8.2/hordelib/_comfyui/comfy/ldm/modules/diffusionmodules/__pycache__/__init__.cpython-310.pyc +0 -0
  944. horde_engine-2.8.2/hordelib/_comfyui/comfy/ldm/modules/diffusionmodules/__pycache__/model.cpython-310.pyc +0 -0
  945. horde_engine-2.8.2/hordelib/_comfyui/comfy/ldm/modules/diffusionmodules/__pycache__/openaimodel.cpython-310.pyc +0 -0
  946. horde_engine-2.8.2/hordelib/_comfyui/comfy/ldm/modules/diffusionmodules/__pycache__/upscaling.cpython-310.pyc +0 -0
  947. horde_engine-2.8.2/hordelib/_comfyui/comfy/ldm/modules/diffusionmodules/__pycache__/util.cpython-310.pyc +0 -0
  948. horde_engine-2.8.2/hordelib/_comfyui/comfy/ldm/modules/diffusionmodules/model.py +0 -651
  949. horde_engine-2.8.2/hordelib/_comfyui/comfy/ldm/modules/diffusionmodules/openaimodel.py +0 -890
  950. horde_engine-2.8.2/hordelib/_comfyui/comfy/ldm/modules/diffusionmodules/upscaling.py +0 -85
  951. horde_engine-2.8.2/hordelib/_comfyui/comfy/ldm/modules/diffusionmodules/util.py +0 -306
  952. horde_engine-2.8.2/hordelib/_comfyui/comfy/ldm/modules/distributions/__pycache__/__init__.cpython-310.pyc +0 -0
  953. horde_engine-2.8.2/hordelib/_comfyui/comfy/ldm/modules/distributions/__pycache__/distributions.cpython-310.pyc +0 -0
  954. horde_engine-2.8.2/hordelib/_comfyui/comfy/ldm/modules/distributions/distributions.py +0 -92
  955. horde_engine-2.8.2/hordelib/_comfyui/comfy/ldm/modules/ema.py +0 -80
  956. horde_engine-2.8.2/hordelib/_comfyui/comfy/ldm/modules/encoders/__pycache__/__init__.cpython-310.pyc +0 -0
  957. horde_engine-2.8.2/hordelib/_comfyui/comfy/ldm/modules/encoders/__pycache__/noise_aug_modules.cpython-310.pyc +0 -0
  958. horde_engine-2.8.2/hordelib/_comfyui/comfy/ldm/modules/encoders/noise_aug_modules.py +0 -35
  959. horde_engine-2.8.2/hordelib/_comfyui/comfy/ldm/modules/sub_quadratic_attention.py +0 -274
  960. horde_engine-2.8.2/hordelib/_comfyui/comfy/ldm/modules/temporal_ae.py +0 -245
  961. horde_engine-2.8.2/hordelib/_comfyui/comfy/ldm/util.py +0 -197
  962. horde_engine-2.8.2/hordelib/_comfyui/comfy/lora.py +0 -241
  963. horde_engine-2.8.2/hordelib/_comfyui/comfy/model_base.py +0 -559
  964. horde_engine-2.8.2/hordelib/_comfyui/comfy/model_detection.py +0 -383
  965. horde_engine-2.8.2/hordelib/_comfyui/comfy/model_management.py +0 -877
  966. horde_engine-2.8.2/hordelib/_comfyui/comfy/model_patcher.py +0 -485
  967. horde_engine-2.8.2/hordelib/_comfyui/comfy/model_sampling.py +0 -203
  968. horde_engine-2.8.2/hordelib/_comfyui/comfy/ops.py +0 -163
  969. horde_engine-2.8.2/hordelib/_comfyui/comfy/options.py +0 -6
  970. horde_engine-2.8.2/hordelib/_comfyui/comfy/sample.py +0 -44
  971. horde_engine-2.8.2/hordelib/_comfyui/comfy/sampler_helpers.py +0 -76
  972. horde_engine-2.8.2/hordelib/_comfyui/comfy/samplers.py +0 -755
  973. horde_engine-2.8.2/hordelib/_comfyui/comfy/sd.py +0 -626
  974. horde_engine-2.8.2/hordelib/_comfyui/comfy/sd1_clip.py +0 -521
  975. horde_engine-2.8.2/hordelib/_comfyui/comfy/sd1_clip_config.json +0 -25
  976. horde_engine-2.8.2/hordelib/_comfyui/comfy/sd1_tokenizer/merges.txt +0 -48895
  977. horde_engine-2.8.2/hordelib/_comfyui/comfy/sd1_tokenizer/special_tokens_map.json +0 -24
  978. horde_engine-2.8.2/hordelib/_comfyui/comfy/sd1_tokenizer/tokenizer_config.json +0 -34
  979. horde_engine-2.8.2/hordelib/_comfyui/comfy/sd1_tokenizer/vocab.json +0 -49410
  980. horde_engine-2.8.2/hordelib/_comfyui/comfy/sd2_clip.py +0 -24
  981. horde_engine-2.8.2/hordelib/_comfyui/comfy/sd2_clip_config.json +0 -23
  982. horde_engine-2.8.2/hordelib/_comfyui/comfy/sdxl_clip.py +0 -88
  983. horde_engine-2.8.2/hordelib/_comfyui/comfy/supported_models.py +0 -481
  984. horde_engine-2.8.2/hordelib/_comfyui/comfy/supported_models_base.py +0 -95
  985. horde_engine-2.8.2/hordelib/_comfyui/comfy/t2i_adapter/__pycache__/adapter.cpython-310.pyc +0 -0
  986. horde_engine-2.8.2/hordelib/_comfyui/comfy/t2i_adapter/adapter.py +0 -293
  987. horde_engine-2.8.2/hordelib/_comfyui/comfy/taesd/__pycache__/taesd.cpython-310.pyc +0 -0
  988. horde_engine-2.8.2/hordelib/_comfyui/comfy/taesd/taesd.py +0 -77
  989. horde_engine-2.8.2/hordelib/_comfyui/comfy/utils.py +0 -483
  990. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/__pycache__/nodes_align_your_steps.cpython-310.pyc +0 -0
  991. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/__pycache__/nodes_canny.cpython-310.pyc +0 -0
  992. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/__pycache__/nodes_clip_sdxl.cpython-310.pyc +0 -0
  993. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/__pycache__/nodes_compositing.cpython-310.pyc +0 -0
  994. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/__pycache__/nodes_cond.cpython-310.pyc +0 -0
  995. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/__pycache__/nodes_custom_sampler.cpython-310.pyc +0 -0
  996. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/__pycache__/nodes_differential_diffusion.cpython-310.pyc +0 -0
  997. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/__pycache__/nodes_freelunch.cpython-310.pyc +0 -0
  998. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/__pycache__/nodes_hypernetwork.cpython-310.pyc +0 -0
  999. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/__pycache__/nodes_hypertile.cpython-310.pyc +0 -0
  1000. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/__pycache__/nodes_images.cpython-310.pyc +0 -0
  1001. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/__pycache__/nodes_ip2p.cpython-310.pyc +0 -0
  1002. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/__pycache__/nodes_latent.cpython-310.pyc +0 -0
  1003. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/__pycache__/nodes_mask.cpython-310.pyc +0 -0
  1004. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/__pycache__/nodes_model_advanced.cpython-310.pyc +0 -0
  1005. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/__pycache__/nodes_model_downscale.cpython-310.pyc +0 -0
  1006. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/__pycache__/nodes_model_merging.cpython-310.pyc +0 -0
  1007. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/__pycache__/nodes_model_merging_model_specific.cpython-310.pyc +0 -0
  1008. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/__pycache__/nodes_morphology.cpython-310.pyc +0 -0
  1009. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/__pycache__/nodes_pag.cpython-310.pyc +0 -0
  1010. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/__pycache__/nodes_perpneg.cpython-310.pyc +0 -0
  1011. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/__pycache__/nodes_photomaker.cpython-310.pyc +0 -0
  1012. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/__pycache__/nodes_post_processing.cpython-310.pyc +0 -0
  1013. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/__pycache__/nodes_rebatch.cpython-310.pyc +0 -0
  1014. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/__pycache__/nodes_sag.cpython-310.pyc +0 -0
  1015. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/__pycache__/nodes_sdupscale.cpython-310.pyc +0 -0
  1016. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/__pycache__/nodes_stable3d.cpython-310.pyc +0 -0
  1017. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/__pycache__/nodes_stable_cascade.cpython-310.pyc +0 -0
  1018. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/__pycache__/nodes_tomesd.cpython-310.pyc +0 -0
  1019. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/__pycache__/nodes_upscale_model.cpython-310.pyc +0 -0
  1020. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/__pycache__/nodes_video_model.cpython-310.pyc +0 -0
  1021. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/__pycache__/__init__.cpython-310.pyc +0 -0
  1022. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/__pycache__/model_loading.cpython-310.pyc +0 -0
  1023. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/__pycache__/types.cpython-310.pyc +0 -0
  1024. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/DAT.py +0 -1182
  1025. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/HAT.py +0 -1277
  1026. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/LICENSE-DAT +0 -201
  1027. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/LICENSE-ESRGAN +0 -201
  1028. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/LICENSE-HAT +0 -21
  1029. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/LICENSE-RealESRGAN +0 -29
  1030. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/LICENSE-SCUNet +0 -201
  1031. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/LICENSE-SPSR +0 -201
  1032. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/LICENSE-SwiftSRGAN +0 -121
  1033. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/LICENSE-Swin2SR +0 -201
  1034. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/LICENSE-SwinIR +0 -201
  1035. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/LICENSE-lama +0 -201
  1036. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/LaMa.py +0 -694
  1037. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/OmniSR/ChannelAttention.py +0 -110
  1038. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/OmniSR/LICENSE +0 -201
  1039. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/OmniSR/OSA.py +0 -577
  1040. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/OmniSR/OSAG.py +0 -60
  1041. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/OmniSR/OmniSR.py +0 -143
  1042. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/OmniSR/__pycache__/OSA.cpython-310.pyc +0 -0
  1043. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/OmniSR/__pycache__/OSAG.cpython-310.pyc +0 -0
  1044. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/OmniSR/__pycache__/OmniSR.cpython-310.pyc +0 -0
  1045. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/OmniSR/__pycache__/esa.cpython-310.pyc +0 -0
  1046. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/OmniSR/__pycache__/layernorm.cpython-310.pyc +0 -0
  1047. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/OmniSR/__pycache__/pixelshuffle.cpython-310.pyc +0 -0
  1048. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/OmniSR/esa.py +0 -294
  1049. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/OmniSR/layernorm.py +0 -70
  1050. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/OmniSR/pixelshuffle.py +0 -31
  1051. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/RRDB.py +0 -296
  1052. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/SCUNet.py +0 -455
  1053. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/SPSR.py +0 -383
  1054. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/SRVGG.py +0 -114
  1055. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/SwiftSRGAN.py +0 -161
  1056. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/Swin2SR.py +0 -1377
  1057. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/SwinIR.py +0 -1224
  1058. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/__pycache__/DAT.cpython-310.pyc +0 -0
  1059. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/__pycache__/HAT.cpython-310.pyc +0 -0
  1060. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/__pycache__/LaMa.cpython-310.pyc +0 -0
  1061. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/__pycache__/RRDB.cpython-310.pyc +0 -0
  1062. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/__pycache__/SCUNet.cpython-310.pyc +0 -0
  1063. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/__pycache__/SPSR.cpython-310.pyc +0 -0
  1064. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/__pycache__/SRVGG.cpython-310.pyc +0 -0
  1065. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/__pycache__/SwiftSRGAN.cpython-310.pyc +0 -0
  1066. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/__pycache__/Swin2SR.cpython-310.pyc +0 -0
  1067. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/__pycache__/SwinIR.cpython-310.pyc +0 -0
  1068. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/__pycache__/__init__.cpython-310.pyc +0 -0
  1069. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/__pycache__/block.cpython-310.pyc +0 -0
  1070. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/block.py +0 -546
  1071. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/face/LICENSE-GFPGAN +0 -351
  1072. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/face/LICENSE-RestoreFormer +0 -351
  1073. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/face/LICENSE-codeformer +0 -35
  1074. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/face/__pycache__/codeformer.cpython-310.pyc +0 -0
  1075. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/face/__pycache__/gfpganv1_clean_arch.cpython-310.pyc +0 -0
  1076. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/face/__pycache__/restoreformer_arch.cpython-310.pyc +0 -0
  1077. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/face/__pycache__/stylegan2_clean_arch.cpython-310.pyc +0 -0
  1078. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/face/arcface_arch.py +0 -265
  1079. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/face/codeformer.py +0 -790
  1080. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/face/fused_act.py +0 -81
  1081. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/face/gfpgan_bilinear_arch.py +0 -389
  1082. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/face/gfpganv1_arch.py +0 -566
  1083. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/face/gfpganv1_clean_arch.py +0 -370
  1084. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/face/restoreformer_arch.py +0 -776
  1085. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/face/stylegan2_arch.py +0 -865
  1086. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/face/stylegan2_bilinear_arch.py +0 -709
  1087. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/face/stylegan2_clean_arch.py +0 -453
  1088. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/face/upfirdn2d.py +0 -194
  1089. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/timm/LICENSE +0 -201
  1090. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/timm/__pycache__/drop.cpython-310.pyc +0 -0
  1091. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/timm/__pycache__/helpers.cpython-310.pyc +0 -0
  1092. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/timm/__pycache__/weight_init.cpython-310.pyc +0 -0
  1093. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/timm/drop.py +0 -223
  1094. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/timm/helpers.py +0 -31
  1095. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/architecture/timm/weight_init.py +0 -128
  1096. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/model_loading.py +0 -99
  1097. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/chainner_models/types.py +0 -69
  1098. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/nodes_align_your_steps.py +0 -45
  1099. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/nodes_canny.py +0 -30
  1100. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/nodes_clip_sdxl.py +0 -56
  1101. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/nodes_compositing.py +0 -202
  1102. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/nodes_cond.py +0 -25
  1103. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/nodes_custom_sampler.py +0 -612
  1104. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/nodes_differential_diffusion.py +0 -42
  1105. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/nodes_freelunch.py +0 -113
  1106. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/nodes_hypernetwork.py +0 -120
  1107. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/nodes_hypertile.py +0 -83
  1108. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/nodes_images.py +0 -195
  1109. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/nodes_ip2p.py +0 -45
  1110. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/nodes_latent.py +0 -155
  1111. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/nodes_mask.py +0 -382
  1112. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/nodes_model_advanced.py +0 -217
  1113. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/nodes_model_downscale.py +0 -53
  1114. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/nodes_model_merging.py +0 -339
  1115. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/nodes_model_merging_model_specific.py +0 -60
  1116. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/nodes_morphology.py +0 -49
  1117. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/nodes_pag.py +0 -56
  1118. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/nodes_perpneg.py +0 -102
  1119. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/nodes_photomaker.py +0 -187
  1120. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/nodes_post_processing.py +0 -279
  1121. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/nodes_rebatch.py +0 -138
  1122. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/nodes_sag.py +0 -170
  1123. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/nodes_sdupscale.py +0 -47
  1124. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/nodes_stable3d.py +0 -143
  1125. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/nodes_stable_cascade.py +0 -140
  1126. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/nodes_tomesd.py +0 -177
  1127. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/nodes_upscale_model.py +0 -71
  1128. horde_engine-2.8.2/hordelib/_comfyui/comfy_extras/nodes_video_model.py +0 -134
  1129. horde_engine-2.8.2/hordelib/_comfyui/cuda_malloc.py +0 -90
  1130. horde_engine-2.8.2/hordelib/_comfyui/custom_nodes/__pycache__/websocket_image_save.cpython-310.pyc +0 -0
  1131. horde_engine-2.8.2/hordelib/_comfyui/custom_nodes/example_node.py.example +0 -118
  1132. horde_engine-2.8.2/hordelib/_comfyui/custom_nodes/websocket_image_save.py +0 -45
  1133. horde_engine-2.8.2/hordelib/_comfyui/execution.py +0 -835
  1134. horde_engine-2.8.2/hordelib/_comfyui/extra_model_paths.yaml +0 -4
  1135. horde_engine-2.8.2/hordelib/_comfyui/extra_model_paths.yaml.example +0 -42
  1136. horde_engine-2.8.2/hordelib/_comfyui/folder_paths.py +0 -267
  1137. horde_engine-2.8.2/hordelib/_comfyui/latent_preview.py +0 -98
  1138. horde_engine-2.8.2/hordelib/_comfyui/main.py +0 -258
  1139. horde_engine-2.8.2/hordelib/_comfyui/models/configs/anything_v3.yaml +0 -73
  1140. horde_engine-2.8.2/hordelib/_comfyui/models/configs/v1-inference.yaml +0 -70
  1141. horde_engine-2.8.2/hordelib/_comfyui/models/configs/v1-inference_clip_skip_2.yaml +0 -73
  1142. horde_engine-2.8.2/hordelib/_comfyui/models/configs/v1-inference_clip_skip_2_fp16.yaml +0 -74
  1143. horde_engine-2.8.2/hordelib/_comfyui/models/configs/v1-inference_fp16.yaml +0 -71
  1144. horde_engine-2.8.2/hordelib/_comfyui/models/configs/v1-inpainting-inference.yaml +0 -71
  1145. horde_engine-2.8.2/hordelib/_comfyui/models/configs/v2-inference-v.yaml +0 -68
  1146. horde_engine-2.8.2/hordelib/_comfyui/models/configs/v2-inference-v_fp32.yaml +0 -68
  1147. horde_engine-2.8.2/hordelib/_comfyui/models/configs/v2-inference.yaml +0 -67
  1148. horde_engine-2.8.2/hordelib/_comfyui/models/configs/v2-inference_fp32.yaml +0 -67
  1149. horde_engine-2.8.2/hordelib/_comfyui/models/configs/v2-inpainting-inference.yaml +0 -158
  1150. horde_engine-2.8.2/hordelib/_comfyui/new_updater.py +0 -35
  1151. horde_engine-2.8.2/hordelib/_comfyui/node_helpers.py +0 -10
  1152. horde_engine-2.8.2/hordelib/_comfyui/nodes.py +0 -1965
  1153. horde_engine-2.8.2/hordelib/_comfyui/notebooks/comfyui_colab.ipynb +0 -329
  1154. horde_engine-2.8.2/hordelib/_comfyui/pytest.ini +0 -5
  1155. horde_engine-2.8.2/hordelib/_comfyui/requirements.txt +0 -13
  1156. horde_engine-2.8.2/hordelib/_comfyui/script_examples/basic_api_example.py +0 -120
  1157. horde_engine-2.8.2/hordelib/_comfyui/script_examples/websockets_api_example.py +0 -164
  1158. horde_engine-2.8.2/hordelib/_comfyui/script_examples/websockets_api_example_ws_images.py +0 -159
  1159. horde_engine-2.8.2/hordelib/_comfyui/server.py +0 -646
  1160. horde_engine-2.8.2/hordelib/_comfyui/tests/README.md +0 -29
  1161. horde_engine-2.8.2/hordelib/_comfyui/tests/compare/conftest.py +0 -41
  1162. horde_engine-2.8.2/hordelib/_comfyui/tests/compare/test_quality.py +0 -195
  1163. horde_engine-2.8.2/hordelib/_comfyui/tests/conftest.py +0 -36
  1164. horde_engine-2.8.2/hordelib/_comfyui/tests/inference/graphs/default_graph_sdxl1_0.json +0 -144
  1165. horde_engine-2.8.2/hordelib/_comfyui/tests/inference/test_inference.py +0 -239
  1166. horde_engine-2.8.2/hordelib/_comfyui/tests-ui/afterSetup.js +0 -9
  1167. horde_engine-2.8.2/hordelib/_comfyui/tests-ui/babel.config.json +0 -4
  1168. horde_engine-2.8.2/hordelib/_comfyui/tests-ui/globalSetup.js +0 -14
  1169. horde_engine-2.8.2/hordelib/_comfyui/tests-ui/jest.config.js +0 -11
  1170. horde_engine-2.8.2/hordelib/_comfyui/tests-ui/package-lock.json +0 -5586
  1171. horde_engine-2.8.2/hordelib/_comfyui/tests-ui/package.json +0 -31
  1172. horde_engine-2.8.2/hordelib/_comfyui/tests-ui/setup.js +0 -88
  1173. horde_engine-2.8.2/hordelib/_comfyui/tests-ui/tests/extensions.test.js +0 -196
  1174. horde_engine-2.8.2/hordelib/_comfyui/tests-ui/tests/groupNode.test.js +0 -1005
  1175. horde_engine-2.8.2/hordelib/_comfyui/tests-ui/tests/users.test.js +0 -295
  1176. horde_engine-2.8.2/hordelib/_comfyui/tests-ui/tests/widgetInputs.test.js +0 -557
  1177. horde_engine-2.8.2/hordelib/_comfyui/tests-ui/utils/ezgraph.js +0 -452
  1178. horde_engine-2.8.2/hordelib/_comfyui/tests-ui/utils/index.js +0 -129
  1179. horde_engine-2.8.2/hordelib/_comfyui/tests-ui/utils/litegraph.js +0 -36
  1180. horde_engine-2.8.2/hordelib/_comfyui/tests-ui/utils/nopProxy.js +0 -6
  1181. horde_engine-2.8.2/hordelib/_comfyui/tests-ui/utils/setup.js +0 -81
  1182. horde_engine-2.8.2/hordelib/_comfyui/web/extensions/core/clipspace.js +0 -166
  1183. horde_engine-2.8.2/hordelib/_comfyui/web/extensions/core/colorPalette.js +0 -761
  1184. horde_engine-2.8.2/hordelib/_comfyui/web/extensions/core/contextMenuFilter.js +0 -148
  1185. horde_engine-2.8.2/hordelib/_comfyui/web/extensions/core/dynamicPrompts.js +0 -48
  1186. horde_engine-2.8.2/hordelib/_comfyui/web/extensions/core/editAttention.js +0 -144
  1187. horde_engine-2.8.2/hordelib/_comfyui/web/extensions/core/groupNode.js +0 -1281
  1188. horde_engine-2.8.2/hordelib/_comfyui/web/extensions/core/groupNodeManage.css +0 -149
  1189. horde_engine-2.8.2/hordelib/_comfyui/web/extensions/core/groupNodeManage.js +0 -422
  1190. horde_engine-2.8.2/hordelib/_comfyui/web/extensions/core/groupOptions.js +0 -259
  1191. horde_engine-2.8.2/hordelib/_comfyui/web/extensions/core/invertMenuScrolling.js +0 -36
  1192. horde_engine-2.8.2/hordelib/_comfyui/web/extensions/core/keybinds.js +0 -70
  1193. horde_engine-2.8.2/hordelib/_comfyui/web/extensions/core/linkRenderMode.js +0 -25
  1194. horde_engine-2.8.2/hordelib/_comfyui/web/extensions/core/maskeditor.js +0 -923
  1195. horde_engine-2.8.2/hordelib/_comfyui/web/extensions/core/nodeTemplates.js +0 -412
  1196. horde_engine-2.8.2/hordelib/_comfyui/web/extensions/core/noteNode.js +0 -41
  1197. horde_engine-2.8.2/hordelib/_comfyui/web/extensions/core/rerouteNode.js +0 -274
  1198. horde_engine-2.8.2/hordelib/_comfyui/web/extensions/core/saveImageExtraOutput.js +0 -35
  1199. horde_engine-2.8.2/hordelib/_comfyui/web/extensions/core/simpleTouchSupport.js +0 -102
  1200. horde_engine-2.8.2/hordelib/_comfyui/web/extensions/core/slotDefaults.js +0 -91
  1201. horde_engine-2.8.2/hordelib/_comfyui/web/extensions/core/snapToGrid.js +0 -89
  1202. horde_engine-2.8.2/hordelib/_comfyui/web/extensions/core/undoRedo.js +0 -177
  1203. horde_engine-2.8.2/hordelib/_comfyui/web/extensions/core/uploadImage.js +0 -12
  1204. horde_engine-2.8.2/hordelib/_comfyui/web/extensions/core/widgetInputs.js +0 -800
  1205. horde_engine-2.8.2/hordelib/_comfyui/web/extensions/logging.js.example +0 -55
  1206. horde_engine-2.8.2/hordelib/_comfyui/web/index.html +0 -48
  1207. horde_engine-2.8.2/hordelib/_comfyui/web/jsconfig.json +0 -10
  1208. horde_engine-2.8.2/hordelib/_comfyui/web/lib/litegraph.core.js +0 -14424
  1209. horde_engine-2.8.2/hordelib/_comfyui/web/lib/litegraph.css +0 -693
  1210. horde_engine-2.8.2/hordelib/_comfyui/web/lib/litegraph.extensions.js +0 -21
  1211. horde_engine-2.8.2/hordelib/_comfyui/web/scripts/api.js +0 -422
  1212. horde_engine-2.8.2/hordelib/_comfyui/web/scripts/app.js +0 -2253
  1213. horde_engine-2.8.2/hordelib/_comfyui/web/scripts/defaultGraph.js +0 -119
  1214. horde_engine-2.8.2/hordelib/_comfyui/web/scripts/domWidget.js +0 -326
  1215. horde_engine-2.8.2/hordelib/_comfyui/web/scripts/logging.js +0 -370
  1216. horde_engine-2.8.2/hordelib/_comfyui/web/scripts/pnginfo.js +0 -433
  1217. horde_engine-2.8.2/hordelib/_comfyui/web/scripts/ui/dialog.js +0 -32
  1218. horde_engine-2.8.2/hordelib/_comfyui/web/scripts/ui/draggableList.js +0 -287
  1219. horde_engine-2.8.2/hordelib/_comfyui/web/scripts/ui/imagePreview.js +0 -97
  1220. horde_engine-2.8.2/hordelib/_comfyui/web/scripts/ui/settings.js +0 -317
  1221. horde_engine-2.8.2/hordelib/_comfyui/web/scripts/ui/spinner.css +0 -34
  1222. horde_engine-2.8.2/hordelib/_comfyui/web/scripts/ui/spinner.js +0 -9
  1223. horde_engine-2.8.2/hordelib/_comfyui/web/scripts/ui/toggleSwitch.js +0 -60
  1224. horde_engine-2.8.2/hordelib/_comfyui/web/scripts/ui/userSelection.css +0 -135
  1225. horde_engine-2.8.2/hordelib/_comfyui/web/scripts/ui/userSelection.js +0 -114
  1226. horde_engine-2.8.2/hordelib/_comfyui/web/scripts/ui.js +0 -642
  1227. horde_engine-2.8.2/hordelib/_comfyui/web/scripts/utils.js +0 -88
  1228. horde_engine-2.8.2/hordelib/_comfyui/web/scripts/widgets.js +0 -527
  1229. horde_engine-2.8.2/hordelib/_comfyui/web/style.css +0 -559
  1230. horde_engine-2.8.2/hordelib/_comfyui/web/types/comfy.d.ts +0 -76
  1231. horde_engine-2.8.2/hordelib/_comfyui/web/types/litegraph.d.ts +0 -1506
  1232. horde_engine-2.8.2/hordelib/_version.py +0 -16
  1233. horde_engine-2.8.2/hordelib/benchmark.py +0 -252
  1234. horde_engine-2.8.2/hordelib/comfy_horde.py +0 -810
  1235. horde_engine-2.8.2/hordelib/config_path.py +0 -27
  1236. horde_engine-2.8.2/hordelib/consts.py +0 -85
  1237. horde_engine-2.8.2/hordelib/exceptions.py +0 -10
  1238. horde_engine-2.8.2/hordelib/horde.py +0 -1364
  1239. horde_engine-2.8.2/hordelib/initialisation.py +0 -107
  1240. horde_engine-2.8.2/hordelib/install_comfy.py +0 -166
  1241. horde_engine-2.8.2/hordelib/model_database/db_dep.json +0 -98
  1242. horde_engine-2.8.2/hordelib/model_database/db_embeds.json +0 -43
  1243. horde_engine-2.8.2/hordelib/model_database/diffusers.json +0 -31
  1244. horde_engine-2.8.2/hordelib/model_database/med_config.json +0 -21
  1245. horde_engine-2.8.2/hordelib/model_manager/__init__.py +0 -3
  1246. horde_engine-2.8.2/hordelib/nodes/__init__.py +0 -3
  1247. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/.gitignore +0 -4
  1248. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/LICENSE +0 -201
  1249. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/README.md +0 -91
  1250. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/__init__.py +0 -364
  1251. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/binary/__init__.py +0 -15
  1252. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/canny/__init__.py +0 -6
  1253. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/color/__init__.py +0 -20
  1254. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/hed/__init__.py +0 -150
  1255. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/__init__.py +0 -122
  1256. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/leres/LICENSE +0 -23
  1257. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/leres/Resnet.py +0 -199
  1258. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/leres/Resnext_torch.py +0 -248
  1259. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/leres/depthmap.py +0 -550
  1260. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/leres/multi_depth_model_woauxi.py +0 -33
  1261. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/leres/net_tools.py +0 -51
  1262. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/leres/network_auxi.py +0 -416
  1263. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/LICENSE +0 -19
  1264. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/models/__init__.py +0 -67
  1265. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/models/base_model.py +0 -244
  1266. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/models/base_model_hg.py +0 -58
  1267. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/models/networks.py +0 -623
  1268. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/models/pix2pix4depth_model.py +0 -155
  1269. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/options/__init__.py +0 -1
  1270. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/options/base_options.py +0 -156
  1271. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/options/test_options.py +0 -22
  1272. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/util/__init__.py +0 -1
  1273. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/util/get_data.py +0 -110
  1274. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/util/guidedfilter.py +0 -47
  1275. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/util/html.py +0 -86
  1276. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/util/image_pool.py +0 -54
  1277. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/util/util.py +0 -105
  1278. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/leres/pix2pix/util/visualizer.py +0 -166
  1279. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/midas/__init__.py +0 -39
  1280. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/midas/api.py +0 -169
  1281. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/midas/midas/base_model.py +0 -16
  1282. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/midas/midas/blocks.py +0 -341
  1283. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/midas/midas/dpt_depth.py +0 -108
  1284. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/midas/midas/midas_net.py +0 -76
  1285. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/midas/midas/midas_net_custom.py +0 -128
  1286. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/midas/midas/transforms.py +0 -234
  1287. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/midas/midas/vit.py +0 -491
  1288. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/midas/utils.py +0 -189
  1289. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/mlsd/__init__.py +0 -41
  1290. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/mlsd/models/mbv2_mlsd_large.py +0 -292
  1291. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/mlsd/models/mbv2_mlsd_tiny.py +0 -275
  1292. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/mlsd/utils.py +0 -581
  1293. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/mp_face_mesh/__init__.py +0 -156
  1294. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/mp_pose_hand/__init__.py +0 -106
  1295. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/openpose/__init__.py +0 -46
  1296. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/openpose/body.py +0 -207
  1297. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/openpose/hand.py +0 -71
  1298. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/openpose/model.py +0 -217
  1299. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/openpose/util.py +0 -164
  1300. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/pidinet/__init__.py +0 -41
  1301. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/pidinet/model.py +0 -638
  1302. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/requirements.txt +0 -13
  1303. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/__init__.py +0 -30
  1304. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/datasets/ade20k.py +0 -54
  1305. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/datasets/chase_db1.py +0 -59
  1306. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/datasets/cityscapes.py +0 -54
  1307. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/datasets/cityscapes_769x769.py +0 -35
  1308. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/datasets/drive.py +0 -59
  1309. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/datasets/hrf.py +0 -59
  1310. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/datasets/pascal_context.py +0 -60
  1311. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/datasets/pascal_context_59.py +0 -60
  1312. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/datasets/pascal_voc12.py +0 -57
  1313. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/datasets/pascal_voc12_aug.py +0 -9
  1314. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/datasets/stare.py +0 -59
  1315. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/default_runtime.py +0 -14
  1316. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/ann_r50-d8.py +0 -46
  1317. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/apcnet_r50-d8.py +0 -44
  1318. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/ccnet_r50-d8.py +0 -44
  1319. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/cgnet.py +0 -35
  1320. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/danet_r50-d8.py +0 -44
  1321. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/deeplabv3_r50-d8.py +0 -44
  1322. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/deeplabv3_unet_s5-d16.py +0 -50
  1323. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/deeplabv3plus_r50-d8.py +0 -46
  1324. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/dmnet_r50-d8.py +0 -44
  1325. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/dnl_r50-d8.py +0 -46
  1326. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/emanet_r50-d8.py +0 -47
  1327. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/encnet_r50-d8.py +0 -48
  1328. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/fast_scnn.py +0 -57
  1329. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/fcn_hr18.py +0 -52
  1330. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/fcn_r50-d8.py +0 -45
  1331. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/fcn_unet_s5-d16.py +0 -51
  1332. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/fpn_r50.py +0 -36
  1333. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/fpn_uniformer.py +0 -35
  1334. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/gcnet_r50-d8.py +0 -46
  1335. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/lraspp_m-v3-d8.py +0 -25
  1336. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/nonlocal_r50-d8.py +0 -46
  1337. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/ocrnet_hr18.py +0 -68
  1338. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/ocrnet_r50-d8.py +0 -47
  1339. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/pointrend_r50.py +0 -56
  1340. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/psanet_r50-d8.py +0 -49
  1341. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/pspnet_r50-d8.py +0 -44
  1342. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/pspnet_unet_s5-d16.py +0 -50
  1343. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/upernet_r50.py +0 -44
  1344. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/models/upernet_uniformer.py +0 -43
  1345. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/schedules/schedule_160k.py +0 -9
  1346. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/schedules/schedule_20k.py +0 -9
  1347. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/schedules/schedule_40k.py +0 -9
  1348. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/configs/_base_/schedules/schedule_80k.py +0 -9
  1349. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/exp/upernet_global_small/config.py +0 -38
  1350. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/exp/upernet_global_small/run.sh +0 -10
  1351. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/exp/upernet_global_small/test.sh +0 -10
  1352. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/exp/upernet_global_small/test_config_g.py +0 -38
  1353. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/exp/upernet_global_small/test_config_h32.py +0 -39
  1354. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/exp/upernet_global_small/test_config_w32.py +0 -39
  1355. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/__init__.py +0 -15
  1356. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/arraymisc/__init__.py +0 -4
  1357. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/arraymisc/quantization.py +0 -55
  1358. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/__init__.py +0 -41
  1359. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/alexnet.py +0 -61
  1360. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/__init__.py +0 -35
  1361. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/activation.py +0 -92
  1362. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/context_block.py +0 -125
  1363. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/conv.py +0 -44
  1364. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/conv2d_adaptive_padding.py +0 -62
  1365. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/conv_module.py +0 -206
  1366. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/conv_ws.py +0 -148
  1367. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/depthwise_separable_conv_module.py +0 -96
  1368. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/drop.py +0 -64
  1369. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/generalized_attention.py +0 -412
  1370. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/hsigmoid.py +0 -34
  1371. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/hswish.py +0 -29
  1372. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/non_local.py +0 -306
  1373. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/norm.py +0 -147
  1374. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/padding.py +0 -36
  1375. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/plugin.py +0 -88
  1376. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/registry.py +0 -17
  1377. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/scale.py +0 -21
  1378. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/swish.py +0 -25
  1379. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/transformer.py +0 -605
  1380. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/upsample.py +0 -84
  1381. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/bricks/wrappers.py +0 -180
  1382. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/builder.py +0 -29
  1383. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/resnet.py +0 -316
  1384. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/utils/__init__.py +0 -19
  1385. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/utils/flops_counter.py +0 -578
  1386. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/utils/fuse_conv_bn.py +0 -59
  1387. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/utils/sync_bn.py +0 -59
  1388. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/utils/weight_init.py +0 -643
  1389. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/cnn/vgg.py +0 -175
  1390. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/engine/__init__.py +0 -8
  1391. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/engine/test.py +0 -195
  1392. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/fileio/__init__.py +0 -11
  1393. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/fileio/file_client.py +0 -1127
  1394. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/fileio/handlers/__init__.py +0 -7
  1395. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/fileio/handlers/base.py +0 -30
  1396. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/fileio/handlers/json_handler.py +0 -36
  1397. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/fileio/handlers/pickle_handler.py +0 -28
  1398. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/fileio/handlers/yaml_handler.py +0 -24
  1399. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/fileio/io.py +0 -151
  1400. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/fileio/parse.py +0 -97
  1401. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/image/__init__.py +0 -28
  1402. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/image/colorspace.py +0 -306
  1403. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/image/geometric.py +0 -728
  1404. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/image/io.py +0 -256
  1405. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/image/misc.py +0 -43
  1406. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/image/photometric.py +0 -428
  1407. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/model_zoo/deprecated.json +0 -6
  1408. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/model_zoo/mmcls.json +0 -31
  1409. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/model_zoo/open_mmlab.json +0 -50
  1410. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/__init__.py +0 -81
  1411. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/assign_score_withk.py +0 -123
  1412. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/ball_query.py +0 -55
  1413. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/bbox.py +0 -72
  1414. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/border_align.py +0 -109
  1415. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/box_iou_rotated.py +0 -45
  1416. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/carafe.py +0 -287
  1417. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/cc_attention.py +0 -81
  1418. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/contour_expand.py +0 -49
  1419. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/corner_pool.py +0 -161
  1420. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/correlation.py +0 -196
  1421. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/deform_conv.py +0 -406
  1422. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/deform_roi_pool.py +0 -204
  1423. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/deprecated_wrappers.py +0 -43
  1424. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/focal_loss.py +0 -212
  1425. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/furthest_point_sample.py +0 -83
  1426. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/fused_bias_leakyrelu.py +0 -268
  1427. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/gather_points.py +0 -57
  1428. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/group_points.py +0 -224
  1429. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/info.py +0 -36
  1430. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/iou3d.py +0 -85
  1431. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/knn.py +0 -77
  1432. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/masked_conv.py +0 -111
  1433. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/merge_cells.py +0 -149
  1434. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/modulated_deform_conv.py +0 -280
  1435. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/multi_scale_deform_attn.py +0 -348
  1436. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/nms.py +0 -383
  1437. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/pixel_group.py +0 -75
  1438. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/point_sample.py +0 -317
  1439. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/points_in_boxes.py +0 -133
  1440. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/points_sampler.py +0 -168
  1441. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/psa_mask.py +0 -92
  1442. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/roi_align.py +0 -223
  1443. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/roi_align_rotated.py +0 -177
  1444. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/roi_pool.py +0 -86
  1445. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/roiaware_pool3d.py +0 -100
  1446. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/roipoint_pool3d.py +0 -77
  1447. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/saconv.py +0 -128
  1448. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/scatter_points.py +0 -135
  1449. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/sync_bn.py +0 -288
  1450. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/three_interpolate.py +0 -68
  1451. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/three_nn.py +0 -51
  1452. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/tin_shift.py +0 -68
  1453. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/upfirdn2d.py +0 -320
  1454. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/ops/voxelize.py +0 -132
  1455. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/parallel/__init__.py +0 -13
  1456. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/parallel/_functions.py +0 -79
  1457. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/parallel/collate.py +0 -84
  1458. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/parallel/data_container.py +0 -89
  1459. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/parallel/data_parallel.py +0 -89
  1460. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/parallel/distributed.py +0 -105
  1461. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/parallel/distributed_deprecated.py +0 -57
  1462. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/parallel/registry.py +0 -9
  1463. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/parallel/scatter_gather.py +0 -59
  1464. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/parallel/utils.py +0 -20
  1465. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/__init__.py +0 -47
  1466. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/base_module.py +0 -194
  1467. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/base_runner.py +0 -515
  1468. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/builder.py +0 -22
  1469. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/checkpoint.py +0 -670
  1470. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/default_constructor.py +0 -43
  1471. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/dist_utils.py +0 -164
  1472. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/epoch_based_runner.py +0 -172
  1473. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/fp16_utils.py +0 -388
  1474. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/__init__.py +0 -29
  1475. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/checkpoint.py +0 -156
  1476. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/closure.py +0 -11
  1477. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/ema.py +0 -89
  1478. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/evaluation.py +0 -492
  1479. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/hook.py +0 -101
  1480. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/iter_timer.py +0 -18
  1481. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/logger/__init__.py +0 -15
  1482. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/logger/base.py +0 -166
  1483. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/logger/dvclive.py +0 -58
  1484. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/logger/mlflow.py +0 -78
  1485. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/logger/neptune.py +0 -82
  1486. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/logger/pavi.py +0 -113
  1487. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/logger/tensorboard.py +0 -49
  1488. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/logger/text.py +0 -235
  1489. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/logger/wandb.py +0 -56
  1490. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/lr_updater.py +0 -615
  1491. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/memory.py +0 -25
  1492. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/momentum_updater.py +0 -421
  1493. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/optimizer.py +0 -457
  1494. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/profiler.py +0 -180
  1495. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/sampler_seed.py +0 -20
  1496. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/hooks/sync_buffer.py +0 -22
  1497. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/iter_based_runner.py +0 -256
  1498. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/log_buffer.py +0 -41
  1499. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/optimizer/__init__.py +0 -9
  1500. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/optimizer/builder.py +0 -41
  1501. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/optimizer/default_constructor.py +0 -245
  1502. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/priority.py +0 -60
  1503. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/runner/utils.py +0 -92
  1504. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/__init__.py +0 -69
  1505. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/config.py +0 -649
  1506. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/env.py +0 -99
  1507. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/ext_loader.py +0 -71
  1508. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/logging.py +0 -110
  1509. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/misc.py +0 -377
  1510. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/parrots_jit.py +0 -41
  1511. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/parrots_wrapper.py +0 -107
  1512. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/path.py +0 -101
  1513. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/progressbar.py +0 -208
  1514. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/registry.py +0 -304
  1515. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/testing.py +0 -140
  1516. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/timer.py +0 -117
  1517. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/trace.py +0 -24
  1518. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/utils/version_utils.py +0 -90
  1519. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/version.py +0 -35
  1520. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/video/__init__.py +0 -11
  1521. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/video/io.py +0 -310
  1522. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/video/optflow.py +0 -248
  1523. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/video/processing.py +0 -128
  1524. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/visualization/__init__.py +0 -9
  1525. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/visualization/color.py +0 -52
  1526. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/visualization/image.py +0 -144
  1527. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv/visualization/optflow.py +0 -109
  1528. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv_custom/__init__.py +0 -5
  1529. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmcv_custom/checkpoint.py +0 -477
  1530. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/apis/__init__.py +0 -9
  1531. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/apis/inference.py +0 -126
  1532. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/apis/test.py +0 -216
  1533. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/apis/train.py +0 -109
  1534. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/core/__init__.py +0 -3
  1535. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/core/evaluation/__init__.py +0 -8
  1536. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/core/evaluation/class_names.py +0 -458
  1537. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/core/evaluation/eval_hooks.py +0 -108
  1538. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/core/evaluation/metrics.py +0 -296
  1539. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/core/seg/__init__.py +0 -4
  1540. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/core/seg/builder.py +0 -9
  1541. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/core/seg/sampler/__init__.py +0 -4
  1542. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/core/seg/sampler/base_pixel_sampler.py +0 -12
  1543. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/core/seg/sampler/ohem_pixel_sampler.py +0 -76
  1544. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/core/utils/__init__.py +0 -3
  1545. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/core/utils/misc.py +0 -17
  1546. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/__init__.py +0 -19
  1547. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/ade.py +0 -84
  1548. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/builder.py +0 -175
  1549. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/chase_db1.py +0 -27
  1550. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/cityscapes.py +0 -240
  1551. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/custom.py +0 -372
  1552. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/dataset_wrappers.py +0 -50
  1553. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/drive.py +0 -27
  1554. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/hrf.py +0 -27
  1555. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/pascal_context.py +0 -103
  1556. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/pipelines/__init__.py +0 -16
  1557. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/pipelines/compose.py +0 -51
  1558. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/pipelines/formating.py +0 -293
  1559. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/pipelines/loading.py +0 -144
  1560. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/pipelines/test_time_aug.py +0 -118
  1561. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/pipelines/transforms.py +0 -838
  1562. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/stare.py +0 -27
  1563. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/datasets/voc.py +0 -29
  1564. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/__init__.py +0 -12
  1565. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/backbones/__init__.py +0 -17
  1566. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/backbones/cgnet.py +0 -360
  1567. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/backbones/fast_scnn.py +0 -353
  1568. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/backbones/hrnet.py +0 -535
  1569. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/backbones/mobilenet_v2.py +0 -182
  1570. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/backbones/mobilenet_v3.py +0 -266
  1571. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/backbones/resnest.py +0 -299
  1572. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/backbones/resnet.py +0 -649
  1573. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/backbones/resnext.py +0 -124
  1574. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/backbones/unet.py +0 -450
  1575. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/backbones/uniformer.py +0 -552
  1576. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/backbones/vit.py +0 -442
  1577. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/builder.py +0 -44
  1578. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/__init__.py +0 -28
  1579. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/ann_head.py +0 -259
  1580. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/apc_head.py +0 -141
  1581. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/aspp_head.py +0 -106
  1582. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/cascade_decode_head.py +0 -57
  1583. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/cc_head.py +0 -41
  1584. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/da_head.py +0 -173
  1585. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/decode_head.py +0 -226
  1586. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/dm_head.py +0 -136
  1587. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/dnl_head.py +0 -125
  1588. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/ema_head.py +0 -155
  1589. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/enc_head.py +0 -174
  1590. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/fcn_head.py +0 -81
  1591. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/fpn_head.py +0 -60
  1592. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/gc_head.py +0 -41
  1593. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/lraspp_head.py +0 -77
  1594. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/nl_head.py +0 -46
  1595. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/ocr_head.py +0 -124
  1596. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/point_head.py +0 -312
  1597. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/psa_head.py +0 -186
  1598. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/psp_head.py +0 -101
  1599. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/sep_aspp_head.py +0 -82
  1600. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/sep_fcn_head.py +0 -54
  1601. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/decode_heads/uper_head.py +0 -118
  1602. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/losses/__init__.py +0 -12
  1603. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/losses/accuracy.py +0 -78
  1604. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/losses/cross_entropy_loss.py +0 -198
  1605. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/losses/dice_loss.py +0 -119
  1606. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/losses/lovasz_loss.py +0 -303
  1607. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/losses/utils.py +0 -116
  1608. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/necks/__init__.py +0 -4
  1609. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/necks/fpn.py +0 -210
  1610. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/necks/multilevel_neck.py +0 -53
  1611. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/segmentors/__init__.py +0 -5
  1612. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/segmentors/base.py +0 -255
  1613. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/segmentors/cascade_encoder_decoder.py +0 -95
  1614. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/segmentors/encoder_decoder.py +0 -275
  1615. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/utils/__init__.py +0 -13
  1616. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/utils/drop.py +0 -31
  1617. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/utils/inverted_residual.py +0 -217
  1618. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/utils/make_divisible.py +0 -27
  1619. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/utils/res_layer.py +0 -95
  1620. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/utils/se_layer.py +0 -60
  1621. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/utils/self_attention_block.py +0 -161
  1622. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/utils/up_conv_block.py +0 -106
  1623. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/models/utils/weight_init.py +0 -62
  1624. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/ops/__init__.py +0 -4
  1625. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/ops/encoding.py +0 -74
  1626. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/ops/wrappers.py +0 -50
  1627. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/utils/__init__.py +0 -4
  1628. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/utils/collect_env.py +0 -17
  1629. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/uniformer/mmseg/utils/logger.py +0 -27
  1630. horde_engine-2.8.2/hordelib/nodes/comfy_controlnet_preprocessors/util.py +0 -161
  1631. horde_engine-2.8.2/hordelib/nodes/facerestore/__init__.py +0 -204
  1632. horde_engine-2.8.2/hordelib/nodes/facerestore/facelib/detection/__init__.py +0 -116
  1633. horde_engine-2.8.2/hordelib/nodes/facerestore/facelib/detection/align_trans.py +0 -219
  1634. horde_engine-2.8.2/hordelib/nodes/facerestore/facelib/detection/matlab_cp2tform.py +0 -317
  1635. horde_engine-2.8.2/hordelib/nodes/facerestore/facelib/detection/retinaface/retinaface.py +0 -420
  1636. horde_engine-2.8.2/hordelib/nodes/facerestore/facelib/detection/retinaface/retinaface_net.py +0 -196
  1637. horde_engine-2.8.2/hordelib/nodes/facerestore/facelib/detection/retinaface/retinaface_utils.py +0 -421
  1638. horde_engine-2.8.2/hordelib/nodes/facerestore/facelib/detection/yolov5face/face_detector.py +0 -175
  1639. horde_engine-2.8.2/hordelib/nodes/facerestore/facelib/detection/yolov5face/models/common.py +0 -324
  1640. horde_engine-2.8.2/hordelib/nodes/facerestore/facelib/detection/yolov5face/models/experimental.py +0 -52
  1641. horde_engine-2.8.2/hordelib/nodes/facerestore/facelib/detection/yolov5face/models/yolo.py +0 -300
  1642. horde_engine-2.8.2/hordelib/nodes/facerestore/facelib/detection/yolov5face/models/yolov5l.yaml +0 -47
  1643. horde_engine-2.8.2/hordelib/nodes/facerestore/facelib/detection/yolov5face/models/yolov5n.yaml +0 -45
  1644. horde_engine-2.8.2/hordelib/nodes/facerestore/facelib/detection/yolov5face/utils/autoanchor.py +0 -12
  1645. horde_engine-2.8.2/hordelib/nodes/facerestore/facelib/detection/yolov5face/utils/datasets.py +0 -35
  1646. horde_engine-2.8.2/hordelib/nodes/facerestore/facelib/detection/yolov5face/utils/extract_ckpt.py +0 -5
  1647. horde_engine-2.8.2/hordelib/nodes/facerestore/facelib/detection/yolov5face/utils/general.py +0 -271
  1648. horde_engine-2.8.2/hordelib/nodes/facerestore/facelib/detection/yolov5face/utils/torch_utils.py +0 -40
  1649. horde_engine-2.8.2/hordelib/nodes/facerestore/facelib/parsing/__init__.py +0 -28
  1650. horde_engine-2.8.2/hordelib/nodes/facerestore/facelib/parsing/bisenet.py +0 -140
  1651. horde_engine-2.8.2/hordelib/nodes/facerestore/facelib/parsing/parsenet.py +0 -194
  1652. horde_engine-2.8.2/hordelib/nodes/facerestore/facelib/parsing/resnet.py +0 -69
  1653. horde_engine-2.8.2/hordelib/nodes/facerestore/facelib/utils/__init__.py +0 -7
  1654. horde_engine-2.8.2/hordelib/nodes/facerestore/facelib/utils/face_restoration_helper.py +0 -561
  1655. horde_engine-2.8.2/hordelib/nodes/facerestore/facelib/utils/face_utils.py +0 -283
  1656. horde_engine-2.8.2/hordelib/nodes/facerestore/facelib/utils/misc.py +0 -143
  1657. horde_engine-2.8.2/hordelib/nodes/node_controlnet_model_loader.py +0 -35
  1658. horde_engine-2.8.2/hordelib/nodes/node_image_loader.py +0 -42
  1659. horde_engine-2.8.2/hordelib/nodes/node_image_output.py +0 -56
  1660. horde_engine-2.8.2/hordelib/nodes/node_lora_loader.py +0 -73
  1661. horde_engine-2.8.2/hordelib/nodes/node_model_loader.py +0 -147
  1662. horde_engine-2.8.2/hordelib/nodes/node_upscale_model_loader.py +0 -29
  1663. horde_engine-2.8.2/hordelib/pipeline_designs/pipeline_controlnet.json +0 -940
  1664. horde_engine-2.8.2/hordelib/pipeline_designs/pipeline_controlnet_annotator.json +0 -537
  1665. horde_engine-2.8.2/hordelib/pipeline_designs/pipeline_controlnet_hires_fix.json +0 -1085
  1666. horde_engine-2.8.2/hordelib/pipeline_designs/pipeline_image_facefix.json +0 -177
  1667. horde_engine-2.8.2/hordelib/pipeline_designs/pipeline_image_upscale.json +0 -173
  1668. horde_engine-2.8.2/hordelib/pipeline_designs/pipeline_stable_cascade.json +0 -811
  1669. horde_engine-2.8.2/hordelib/pipeline_designs/pipeline_stable_cascade_remix.json +0 -780
  1670. horde_engine-2.8.2/hordelib/pipeline_designs/pipeline_stable_diffusion.json +0 -563
  1671. horde_engine-2.8.2/hordelib/pipeline_designs/pipeline_stable_diffusion_hires_fix.json +0 -756
  1672. horde_engine-2.8.2/hordelib/pipeline_designs/pipeline_stable_diffusion_img2img_mask.json +0 -625
  1673. horde_engine-2.8.2/hordelib/pipeline_designs/pipeline_stable_diffusion_paint.json +0 -581
  1674. horde_engine-2.8.2/hordelib/pipelines/pipeline_controlnet.json +0 -212
  1675. horde_engine-2.8.2/hordelib/pipelines/pipeline_controlnet_annotator.json +0 -110
  1676. horde_engine-2.8.2/hordelib/pipelines/pipeline_controlnet_hires_fix.json +0 -252
  1677. horde_engine-2.8.2/hordelib/pipelines/pipeline_image_facefix.json +0 -39
  1678. horde_engine-2.8.2/hordelib/pipelines/pipeline_image_upscale.json +0 -38
  1679. horde_engine-2.8.2/hordelib/pipelines/pipeline_stable_cascade.json +0 -215
  1680. horde_engine-2.8.2/hordelib/pipelines/pipeline_stable_cascade_remix.json +0 -207
  1681. horde_engine-2.8.2/hordelib/pipelines/pipeline_stable_diffusion.json +0 -127
  1682. horde_engine-2.8.2/hordelib/pipelines/pipeline_stable_diffusion_hires_fix.json +0 -167
  1683. horde_engine-2.8.2/hordelib/pipelines/pipeline_stable_diffusion_img2img_mask.json +0 -140
  1684. horde_engine-2.8.2/hordelib/pipelines/pipeline_stable_diffusion_paint.json +0 -132
  1685. horde_engine-2.8.2/hordelib/preload.py +0 -53
  1686. horde_engine-2.8.2/hordelib/pyinstaller_hooks/hook-hordelib.horde.py +0 -53
  1687. horde_engine-2.8.2/hordelib/settings.py +0 -149
  1688. horde_engine-2.8.2/hordelib/shared_model_manager.py +0 -229
  1689. horde_engine-2.8.2/hordelib/train.py +0 -384
  1690. horde_engine-2.8.2/hordelib/utils/distance.py +0 -333
  1691. horde_engine-2.8.2/hordelib/utils/dynamicprompt.py +0 -26
  1692. horde_engine-2.8.2/hordelib/utils/gpuinfo.py +0 -199
  1693. horde_engine-2.8.2/hordelib/utils/image_utils.py +0 -160
  1694. horde_engine-2.8.2/hordelib/utils/ioredirect.py +0 -160
  1695. horde_engine-2.8.2/hordelib/utils/logger.py +0 -167
  1696. horde_engine-2.8.2/hordelib/utils/sanitizer.py +0 -38
  1697. horde_engine-2.8.2/mypy.ini +0 -40
  1698. horde_engine-2.8.2/pyinstaller.py +0 -21
  1699. horde_engine-2.8.2/pyinstaller_test_entrypoint.py +0 -36
  1700. horde_engine-2.8.2/pyproject.toml +0 -120
  1701. horde_engine-2.8.2/requirements.dev.txt +0 -24
  1702. horde_engine-2.8.2/requirements.txt +0 -48
  1703. horde_engine-2.8.2/setup.cfg +0 -9
  1704. horde_engine-2.8.2/tests/conftest.py +0 -277
  1705. horde_engine-2.8.2/tests/meta/test_packaging_errors.py +0 -9
  1706. horde_engine-2.8.2/tests/model_managers/test_mm_compvis.py +0 -14
  1707. horde_engine-2.8.2/tests/model_managers/test_mm_lora.py +0 -285
  1708. horde_engine-2.8.2/tests/model_managers/test_mm_safety_checker.py +0 -9
  1709. horde_engine-2.8.2/tests/model_managers/test_mm_ti.py +0 -48
  1710. horde_engine-2.8.2/tests/model_managers/test_shared_model_manager.py +0 -200
  1711. horde_engine-2.8.2/tests/test_comfy.py +0 -185
  1712. horde_engine-2.8.2/tests/test_cuda.py +0 -13
  1713. horde_engine-2.8.2/tests/test_dynamic_prompt.py +0 -33
  1714. horde_engine-2.8.2/tests/test_horde_controlnet_annotator.py +0 -63
  1715. horde_engine-2.8.2/tests/test_horde_inference.py +0 -458
  1716. horde_engine-2.8.2/tests/test_horde_inference_cascade.py +0 -321
  1717. horde_engine-2.8.2/tests/test_horde_inference_controlnet.py +0 -275
  1718. horde_engine-2.8.2/tests/test_horde_inference_custom_model.py +0 -54
  1719. horde_engine-2.8.2/tests/test_horde_inference_img2img.py +0 -542
  1720. horde_engine-2.8.2/tests/test_horde_inference_painting.py +0 -484
  1721. horde_engine-2.8.2/tests/test_horde_lcm.py +0 -205
  1722. horde_engine-2.8.2/tests/test_horde_lora.py +0 -992
  1723. horde_engine-2.8.2/tests/test_horde_pp.py +0 -196
  1724. horde_engine-2.8.2/tests/test_horde_samplers.py +0 -179
  1725. horde_engine-2.8.2/tests/test_horde_ti.py +0 -168
  1726. horde_engine-2.8.2/tests/test_image_metadata.py +0 -41
  1727. horde_engine-2.8.2/tests/test_inference.py +0 -149
  1728. horde_engine-2.8.2/tests/test_initialisation.py +0 -19
  1729. horde_engine-2.8.2/tests/test_internal_comfyui_failures.py +0 -53
  1730. horde_engine-2.8.2/tests/test_payload_mapping.py +0 -47
  1731. horde_engine-2.8.2/tests/test_safety_checker.py +0 -8
  1732. horde_engine-2.8.2/tests/test_utils.py +0 -66
  1733. horde_engine-2.8.2/tests/testing_shared_functions.py +0 -242
  1734. horde_engine-2.8.2/tox.ini +0 -91
  1735. {horde_engine-2.8.2 → horde_engine-2.9.2}/horde_engine.egg-info/dependency_links.txt +0 -0
  1736. {horde_engine-2.8.2 → horde_engine-2.9.2}/horde_engine.egg-info/entry_points.txt +0 -0
  1737. {horde_engine-2.8.2 → horde_engine-2.9.2}/horde_engine.egg-info/requires.txt +0 -0
  1738. {horde_engine-2.8.2 → horde_engine-2.9.2}/horde_engine.egg-info/top_level.txt +0 -0
  1739. {horde_engine-2.8.2 → horde_engine-2.9.2}/hordelib/_comfyui/comfy/ldm/modules/diffusionmodules/__init__.py +0 -0
  1740. {horde_engine-2.8.2 → horde_engine-2.9.2}/hordelib/_comfyui/comfy/ldm/modules/distributions/__init__.py +0 -0
  1741. {horde_engine-2.8.2 → horde_engine-2.9.2}/hordelib/_comfyui/comfy/ldm/modules/encoders/__init__.py +0 -0
  1742. {horde_engine-2.8.2 → horde_engine-2.9.2}/hordelib/_comfyui/comfy_extras/chainner_models/__init__.py +0 -0
  1743. {horde_engine-2.8.2 → horde_engine-2.9.2}/hordelib/_comfyui/comfy_extras/chainner_models/architecture/__init__.py +0 -0
  1744. {horde_engine-2.8.2 → horde_engine-2.9.2}/hordelib/_comfyui/comfyui_screenshot.png +0 -0
  1745. {horde_engine-2.8.2 → horde_engine-2.9.2}/hordelib/_comfyui/input/example.png +0 -0
  1746. {horde_engine-2.8.2 → horde_engine-2.9.2}/hordelib/_comfyui/models/checkpoints/put_checkpoints_here +0 -0
  1747. {horde_engine-2.8.2 → horde_engine-2.9.2}/hordelib/_comfyui/models/clip/put_clip_or_text_encoder_models_here +0 -0
  1748. {horde_engine-2.8.2 → horde_engine-2.9.2}/hordelib/_comfyui/models/clip_vision/put_clip_vision_models_here +0 -0
  1749. {horde_engine-2.8.2 → horde_engine-2.9.2}/hordelib/_comfyui/models/controlnet/put_controlnets_and_t2i_here +0 -0
  1750. {horde_engine-2.8.2 → horde_engine-2.9.2}/hordelib/_comfyui/models/diffusers/put_diffusers_models_here +0 -0
  1751. {horde_engine-2.8.2 → horde_engine-2.9.2}/hordelib/_comfyui/models/embeddings/put_embeddings_or_textual_inversion_concepts_here +0 -0
  1752. {horde_engine-2.8.2 → horde_engine-2.9.2}/hordelib/_comfyui/models/gligen/put_gligen_models_here +0 -0
  1753. {horde_engine-2.8.2 → horde_engine-2.9.2}/hordelib/_comfyui/models/hypernetworks/put_hypernetworks_here +0 -0
  1754. {horde_engine-2.8.2 → horde_engine-2.9.2}/hordelib/_comfyui/models/loras/put_loras_here +0 -0
  1755. {horde_engine-2.8.2 → horde_engine-2.9.2}/hordelib/_comfyui/models/photomaker/put_photomaker_models_here +0 -0
  1756. {horde_engine-2.8.2 → horde_engine-2.9.2}/hordelib/_comfyui/models/style_models/put_t2i_style_model_here +0 -0
  1757. {horde_engine-2.8.2 → horde_engine-2.9.2}/hordelib/_comfyui/models/unet/put_unet_files_here +0 -0
  1758. {horde_engine-2.8.2 → horde_engine-2.9.2}/hordelib/_comfyui/models/upscale_models/put_esrgan_and_other_upscale_models_here +0 -0
  1759. {horde_engine-2.8.2 → horde_engine-2.9.2}/hordelib/_comfyui/models/vae/put_vae_here +0 -0
  1760. {horde_engine-2.8.2 → horde_engine-2.9.2}/hordelib/_comfyui/models/vae_approx/put_taesd_encoder_pth_and_taesd_decoder_pth_here +0 -0
  1761. {horde_engine-2.8.2 → horde_engine-2.9.2}/hordelib/_comfyui/output/_output_images_will_be_put_here +0 -0
  1762. {horde_engine-2.8.2 → horde_engine-2.9.2}/hordelib/_comfyui/tests/__init__.py +0 -0
  1763. {horde_engine-2.8.2 → horde_engine-2.9.2}/hordelib/_comfyui/tests/inference/__init__.py +0 -0
  1764. {horde_engine-2.8.2 → horde_engine-2.9.2}/hordelib/_comfyui/tests-ui/.gitignore +0 -0
  1765. {horde_engine-2.8.2 → horde_engine-2.9.2}/hordelib/_comfyui/web/user.css +0 -0
  1766. {horde_engine-2.8.2 → horde_engine-2.9.2}/hordelib/model_manager/base.py +0 -0
  1767. {horde_engine-2.8.2 → horde_engine-2.9.2}/hordelib/model_manager/codeformer.py +0 -0
  1768. {horde_engine-2.8.2 → horde_engine-2.9.2}/hordelib/model_manager/compvis.py +0 -0
  1769. {horde_engine-2.8.2 → horde_engine-2.9.2}/hordelib/model_manager/controlnet.py +0 -0
  1770. {horde_engine-2.8.2 → horde_engine-2.9.2}/hordelib/model_manager/diffusers.py +0 -0
  1771. {horde_engine-2.8.2 → horde_engine-2.9.2}/hordelib/model_manager/esrgan.py +0 -0
  1772. {horde_engine-2.8.2 → horde_engine-2.9.2}/hordelib/model_manager/gfpgan.py +0 -0
  1773. {horde_engine-2.8.2 → horde_engine-2.9.2}/hordelib/model_manager/hyper.py +0 -0
  1774. {horde_engine-2.8.2 → horde_engine-2.9.2}/hordelib/model_manager/lora.py +0 -0
  1775. {horde_engine-2.8.2 → horde_engine-2.9.2}/hordelib/model_manager/safety_checker.py +0 -0
  1776. {horde_engine-2.8.2 → horde_engine-2.9.2}/hordelib/model_manager/ti.py +0 -0
  1777. {horde_engine-2.8.2 → horde_engine-2.9.2}/hordelib/nodes/comfy_controlnet_preprocessors/midas/midas/__init__.py +0 -0
  1778. {horde_engine-2.8.2 → horde_engine-2.9.2}/hordelib/nodes/facerestore/facelib/__init__.py +0 -0
  1779. {horde_engine-2.8.2 → horde_engine-2.9.2}/hordelib/nodes/facerestore/facelib/detection/yolov5face/__init__.py +0 -0
  1780. {horde_engine-2.8.2 → horde_engine-2.9.2}/hordelib/nodes/facerestore/facelib/detection/yolov5face/models/__init__.py +0 -0
  1781. {horde_engine-2.8.2 → horde_engine-2.9.2}/hordelib/nodes/facerestore/facelib/detection/yolov5face/utils/__init__.py +0 -0
  1782. {horde_engine-2.8.2 → horde_engine-2.9.2}/hordelib/py.typed +0 -0
  1783. {horde_engine-2.8.2 → horde_engine-2.9.2}/hordelib/pyinstaller_hooks/__init__.py +0 -0
  1784. {horde_engine-2.8.2 → horde_engine-2.9.2}/hordelib/safety.py +0 -0
  1785. {horde_engine-2.8.2 → horde_engine-2.9.2}/hordelib/safety_checker.py +0 -0
  1786. {horde_engine-2.8.2 → horde_engine-2.9.2}/hordelib/utils/__init__.py +0 -0
  1787. {horde_engine-2.8.2 → horde_engine-2.9.2}/hordelib/utils/switch.py +0 -0
  1788. {horde_engine-2.8.2 → horde_engine-2.9.2}/tests/__init__.py +0 -0
  1789. {horde_engine-2.8.2 → horde_engine-2.9.2}/tests/meta/__init__.py +0 -0
  1790. {horde_engine-2.8.2 → horde_engine-2.9.2}/tests/model_managers/__init__.py +0 -0
@@ -0,0 +1,32 @@
1
+ ## hordelib Changelog
2
+
3
+ {{#each releases}}
4
+ {{#if href}}
5
+ #{{#unless major}}#{{/unless}} [{{title}}]({{href}})
6
+ {{else}}
7
+ ## {{title}}
8
+ {{/if}}
9
+
10
+ {{#if tag}}
11
+ {{niceDate}}
12
+ {{/if}}
13
+
14
+ {{#if summary}}
15
+ {{summary}}
16
+ {{/if}}
17
+
18
+ {{#each merges}}
19
+ - {{#if commit.breaking}}**Breaking change:** {{/if}}{{message}}{{#if href}} [`#{{id}}`]({{href}}){{/if}} ({{author}})
20
+ {{/each}}
21
+ {{#each fixes}}
22
+ - {{#if commit.breaking}}**Breaking change:** {{/if}}{{commit.subject}}{{#each fixes}}{{#if href}} [`#{{id}}`]({{href}}){{/if}}{{/each}} ({{author}})
23
+ {{/each}}
24
+ {{#each commits}}
25
+ - {{#if breaking}}**Breaking change:** {{/if}}{{subject}}{{#if href}} [`{{shorthash}}`]({{href}}){{/if}} ({{author}})
26
+ {{/each}}
27
+
28
+ {{/each}}
29
+
30
+ {{#unless options.hideCredit}}
31
+ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
32
+ {{/unless}}
@@ -0,0 +1,13 @@
1
+ # Big style/lint only changes 4/7/23
2
+ d834bf44ec4b63e80a7e100e0493ba0f24ec0d14
3
+ 2c072e50f7115ac6b65065f9000fd1de20b9c599
4
+ f74a0f3deb14b21a8155d4133030a4871ffef84b
5
+
6
+ # Medium style/lint/minor refactor only changes 4/11/23
7
+ 1cb70d2eb3c219bff304c4ed0ac34f7456946281
8
+
9
+ # Precommit 8/30/23
10
+ 46af8ec00f93edde1a4953936ca25fb9c9fc369e
11
+
12
+ # Catchup and included hordelib/nodes/
13
+ 23cbab10b5895072678a070beb7a6dc0b8640722
@@ -0,0 +1,11 @@
1
+ version: 2
2
+ updates:
3
+ - package-ecosystem: pip
4
+ directory: "/"
5
+ schedule:
6
+ interval: daily
7
+ time: "13:00"
8
+ groups:
9
+ python-packages:
10
+ patterns:
11
+ - "*"
@@ -0,0 +1,59 @@
1
+ name: Main Tests
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - main
7
+ paths:
8
+ - '**.py'
9
+ - '**.json'
10
+ - 'tox.ini'
11
+ - '.github/workflows/maintests.yml'
12
+ - '.github/workflows/prtests.yml'
13
+ - '.github/workflows/release.yml'
14
+ jobs:
15
+ pre-commit:
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - uses: actions/checkout@v3
19
+ - name: Run pre-commit
20
+ uses: pre-commit/action@v3.0.0
21
+
22
+ build:
23
+ runs-on: self-hosted
24
+ env:
25
+ HORDELIB_CI_ONGOING: "1"
26
+ TESTS_ONGOING: "1"
27
+ CIVIT_API_TOKEN: ${{ secrets.CIVIT_API_TOKEN }}
28
+ strategy:
29
+ matrix:
30
+ python: ["3.10"]
31
+
32
+ steps:
33
+ - uses: actions/checkout@v3
34
+ - name: Setup Python
35
+ uses: actions/setup-python@v4
36
+ with:
37
+ python-version: ${{ matrix.python }}
38
+ - name: Install tox and any other packages
39
+ run: |
40
+ python -m pip install --upgrade pip
41
+ pip install --upgrade -r requirements.dev.txt
42
+ - name: Check build_helper.py horde-engine imports have no breaking dependency changes
43
+ run: tox -e test-build-helper
44
+ - name: Build unit test environment, confirm CUDA is available on host
45
+ run: tox -e tests -- -k test_cuda
46
+ - name: Run unit tests
47
+ run: tox -e tests
48
+ - name: Create CI webpage of results
49
+ run: python -m examples.make_index
50
+ - name: Upload to S3
51
+ uses: shallwefootball/s3-upload-action@master
52
+ id: S3
53
+ with:
54
+ aws_key_id: ${{secrets.S3_BUILD_ARTIFACTS_ACCESS_KEY_ID}}
55
+ aws_secret_access_key: ${{secrets.S3_BUILD_ARTIFACTS_SECRET_ACCESS_KEY}}
56
+ aws_bucket: hordelib
57
+ endpoint: ${{secrets.S3_ENDPOINT}}
58
+ source_dir: images/
59
+ destination_dir: ''
@@ -0,0 +1,64 @@
1
+ name: Pull Request Tests
2
+
3
+ on:
4
+ pull_request_target:
5
+ branches:
6
+ - main
7
+ types:
8
+ - opened
9
+ - synchronize
10
+ paths:
11
+ - '**.py'
12
+ - '**.json'
13
+ - 'tox.ini'
14
+ - '.github/workflows/maintests.yml'
15
+ - '.github/workflows/prtests.yml'
16
+ - '.github/workflows/release.yml'
17
+ jobs:
18
+ pre-commit:
19
+ runs-on: ubuntu-latest
20
+ steps:
21
+ - uses: actions/checkout@v3
22
+ - name: Run pre-commit
23
+ uses: pre-commit/action@v3.0.0
24
+
25
+ build:
26
+ runs-on: self-hosted
27
+ env:
28
+ HORDELIB_CI_ONGOING: "1"
29
+ TESTS_ONGOING: "1"
30
+ CIVIT_API_TOKEN: ${{ secrets.CIVIT_API_TOKEN }}
31
+ strategy:
32
+ matrix:
33
+ python: ["3.10"]
34
+
35
+ steps:
36
+ - uses: actions/checkout@v3
37
+ with:
38
+ ref: ${{ github.event.pull_request.head.sha }}
39
+ - name: Setup Python
40
+ uses: actions/setup-python@v4
41
+ with:
42
+ python-version: ${{ matrix.python }}
43
+ - name: Install tox and any other packages
44
+ run: |
45
+ python -m pip install --upgrade pip
46
+ pip install --upgrade -r requirements.dev.txt
47
+ - name: Check build_helper.py horde-engine imports have no breaking dependency changes
48
+ run: tox -e test-build-helper
49
+ - name: Build unit test environment, confirm CUDA is available on host
50
+ run: tox -e tests -- -k test_cuda
51
+ - name: Run unit tests
52
+ run: tox -e tests
53
+ - name: Create CI webpage of results
54
+ run: python -m examples.make_index
55
+ - name: Upload to S3
56
+ uses: shallwefootball/s3-upload-action@master
57
+ id: S3
58
+ with:
59
+ aws_key_id: ${{secrets.S3_BUILD_ARTIFACTS_ACCESS_KEY_ID}}
60
+ aws_secret_access_key: ${{secrets.S3_BUILD_ARTIFACTS_SECRET_ACCESS_KEY}}
61
+ aws_bucket: hordelib
62
+ source_dir: images/
63
+ endpoint: ${{secrets.S3_ENDPOINT}}
64
+ destination_dir: 'unstable/'
@@ -0,0 +1,114 @@
1
+ name: horde-engine build and publish
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - releases
7
+
8
+ permissions:
9
+ id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
10
+ contents: write
11
+ pull-requests: read
12
+
13
+ jobs:
14
+ build-n-publish:
15
+ name: horde-engine build and publish
16
+ runs-on: ubuntu-latest
17
+
18
+ environment: # see https://github.com/pypa/gh-action-pypi-publish/tree/release/v1/
19
+ name: pypi
20
+ url: https://pypi.org/p/horde-engine/
21
+
22
+ steps:
23
+
24
+ # Version bumps the project and creates a tag by creating
25
+ # a github release. The github release itself is not so
26
+ # interesting, as it's incomplete because we haven't finished
27
+ # the build. The important goal here is a pypi release and this
28
+ # get us our version number.
29
+ - name: "📣 Release on push"
30
+ id: release
31
+ uses: rymndhng/release-on-push-action@v0.28.0
32
+ env:
33
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
34
+ with:
35
+ bump_version_scheme: patch
36
+ use_github_release_notes: true
37
+
38
+ - name: "✔️ Checkout"
39
+ uses: actions/checkout@v3
40
+ with:
41
+ fetch-depth: 0
42
+
43
+ # Pass the version number in an env var to the below steps
44
+ - name: Set build version env var
45
+ run: echo "SETUPTOOLS_SCM_PRETEND_VERSION=${{ steps.release.outputs.version }}" >> $GITHUB_ENV
46
+
47
+ # We need python...
48
+ - name: "🐍 Set up Python 3.10"
49
+ if: ${{ steps.release.outputs.version != '' }}
50
+ uses: actions/setup-python@v4
51
+ with:
52
+ python-version: "3.10"
53
+
54
+ # Install build deps
55
+ # NOTE If any horde-engine imports used by build_helper.py are changed, or the specific modules
56
+ # imported from horde-engine depend on a package not included here, running build_helper.py later on will fail.
57
+ # See `build_helper.py` for more information.
58
+ - name: "🛠 Install pypa/build"
59
+ if: ${{ steps.release.outputs.version != '' }}
60
+ run: |
61
+ python -m pip install --upgrade pip
62
+ python -m pip install build psutil typing-extensions loguru strenum python-dotenv --user
63
+
64
+ - name: "✏️ Install changelog dependencies"
65
+ if: ${{ steps.release.outputs.version != '' }}
66
+ uses: actions/setup-node@v3
67
+
68
+ - name: "✏️ Generate release changelog"
69
+ if: ${{ steps.release.outputs.version != '' }}
70
+ run: |
71
+ npm -g install auto-changelog
72
+ auto-changelog --template=.changelog --ignore-commit-pattern="update changelog|version bump|Merge pull"
73
+
74
+ # Try to add the changelog back to the releases branch
75
+ - uses: EndBug/add-and-commit@v9
76
+ with:
77
+ add: 'CHANGELOG.md'
78
+ message: 'ci: update changelog'
79
+
80
+ # Patches our requirements.txt and pyproject.toml
81
+ # Build a changelog
82
+ - name: "🔧 Prepare our build for release"
83
+ if: ${{ steps.release.outputs.version != '' }}
84
+ run: >-
85
+ python build_helper.py
86
+
87
+ # Build a pypi distribution using the env var version number
88
+ - name: "🔧 Build a binary wheel and a source tarball"
89
+ if: ${{ steps.release.outputs.version != '' }}
90
+ run: >-
91
+ python -m build --sdist --wheel --outdir dist/ .
92
+
93
+ # Publish the package
94
+ - name: "📦 Publish distribution to PyPI"
95
+ if: ${{ steps.release.outputs.version != '' }}
96
+ uses: pypa/gh-action-pypi-publish@release/v1
97
+
98
+ # Update the badges (maybe, if we're lucky)
99
+ - name: "📦 Refresh pypi badge cache"
100
+ run: >-
101
+ curl -X PURGE
102
+ https://camo.githubusercontent.com/42307cf23a47bc021a97a6da572ce61568aa29b7d23ccfbbc89bf15168d23ce0/68747470733a2f2f62616467652e667572792e696f2f70792f686f7264656c69622e7376673f6272616e63683d6d61696e266b696c6c5f63616368653d31
103
+
104
+ - name: "📦 Refresh downloads badge cache"
105
+ run: >-
106
+ curl -X PURGE
107
+ https://camo.githubusercontent.com/769edfb1778d4cbc3f93bc5ad0be9597bbd2d9c162cc1e9fb44172a5b660af01/68747470733a2f2f706570792e746563682f62616467652f686f7264656c6962
108
+
109
+ - name: "Inform with Discord Webhook"
110
+ if: ${{ steps.release.outputs.version != '' }}
111
+ uses: tsickert/discord-webhook@v5.3.0
112
+ with:
113
+ webhook-url: ${{ secrets.DISCORD_WEBHOOK_URL }}
114
+ content: "New version of horde-engine has been published to pypi: ${{ steps.release.outputs.version }}. Changelog: https://t.ly/z2vQ"
@@ -0,0 +1,169 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ models/
24
+ pip-wheel-metadata/
25
+ share/python-wheels/
26
+ *.egg-info/
27
+ .installed.cfg
28
+ *.egg
29
+ MANIFEST
30
+
31
+ # PyInstaller
32
+ # Usually these files are written by a python script from a template
33
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
34
+ *.manifest
35
+ *.spec
36
+
37
+ # Installer logs
38
+ pip-log.txt
39
+ pip-delete-this-directory.txt
40
+
41
+ # Unit test / coverage reports
42
+ htmlcov/
43
+ .tox/
44
+ .nox/
45
+ .coverage
46
+ .coverage.*
47
+ .cache
48
+ nosetests.xml
49
+ coverage.xml
50
+ *.cover
51
+ *.py,cover
52
+ .hypothesis/
53
+ .pytest_cache/
54
+
55
+ # Translations
56
+ *.mo
57
+ *.pot
58
+
59
+ # Django stuff:
60
+ *.log
61
+ local_settings.py
62
+ db.sqlite3
63
+ db.sqlite3-journal
64
+
65
+ # Flask stuff:
66
+ instance/
67
+ .webassets-cache
68
+
69
+ # Scrapy stuff:
70
+ .scrapy
71
+
72
+ # Sphinx documentation
73
+ docs/_build/
74
+
75
+ # PyBuilder
76
+ target/
77
+
78
+ # Jupyter Notebook
79
+ .ipynb_checkpoints
80
+
81
+ # IPython
82
+ profile_default/
83
+ ipython_config.py
84
+
85
+ # pyenv
86
+ .python-version
87
+
88
+ # pipenv
89
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
90
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
91
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
92
+ # install all needed dependencies.
93
+ #Pipfile.lock
94
+
95
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow
96
+ __pypackages__/
97
+
98
+ # Celery stuff
99
+ celerybeat-schedule
100
+ celerybeat.pid
101
+
102
+ # SageMath parsed files
103
+ *.sage.py
104
+
105
+ # Environments
106
+ .env
107
+ .venv
108
+ env/
109
+ venv/
110
+ ENV/
111
+ env.bak/
112
+ venv.bak/
113
+
114
+ # Spyder project settings
115
+ .spyderproject
116
+ .spyproject
117
+
118
+ # Rope project settings
119
+ .ropeproject
120
+
121
+ # mkdocs documentation
122
+ /site
123
+
124
+ # mypy
125
+ .mypy_cache/
126
+ .dmypy.json
127
+ dmypy.json
128
+
129
+ # Pyre type checker
130
+ .pyre/
131
+
132
+ # pytype static type analyzer
133
+ .pytype/
134
+
135
+ # Cython debug symbols
136
+ cython_debug/
137
+
138
+ # Local
139
+ test-image.png
140
+ hordelib/ComfyUI
141
+ # hordelib/model_database
142
+ hordelib/model_database/aitemplate.json
143
+ hordelib/model_database/blip.json
144
+ hordelib/model_database/clip.json
145
+ hordelib/model_database/codeformer.json
146
+ hordelib/model_database/controlnet.json
147
+ hordelib/model_database/esrgan.json
148
+ hordelib/model_database/gfpgan.json
149
+ hordelib/model_database/safety_checker.json
150
+ hordelib/model_database/stable_diffusion.json
151
+ hordelib/model_database/lora.json
152
+ ComfyUI
153
+ model.ckpt
154
+ coverage.lcov
155
+ profiles/
156
+ longprompts.zip
157
+ comfy-prompt*.json
158
+ images/*
159
+ !images/test_*
160
+ hordelib/_comfyui
161
+ _version.py
162
+ _comfyui
163
+ tmp/
164
+
165
+ .vscode
166
+ *.ckpt
167
+ *.pth
168
+ .gitignore
169
+ pipeline_debug.json
@@ -0,0 +1,22 @@
1
+ repos:
2
+ - repo: https://github.com/pre-commit/pre-commit-hooks
3
+ rev: v4.6.0
4
+ hooks:
5
+ - id: check-yaml
6
+ - id: end-of-file-fixer
7
+ - id: trailing-whitespace
8
+ - repo: https://github.com/psf/black
9
+ rev: 24.4.2
10
+ hooks:
11
+ - id: black
12
+ exclude: ^hordelib/nodes/.*\..*$
13
+ - repo: https://github.com/astral-sh/ruff-pre-commit
14
+ rev: v0.4.3
15
+ hooks:
16
+ - id: ruff
17
+ - repo: https://github.com/pre-commit/mirrors-mypy
18
+ rev: 'v1.10.0'
19
+ hooks:
20
+ - id: mypy
21
+ exclude: ^examples/.*$ # FIXME
22
+ additional_dependencies: [pydantic, strenum, types-colorama, types-docutils, types-Pillow, types-psutil, types-Pygments, types-pywin32, types-PyYAML, types-regex, types-requests, types-setuptools, types-tabulate, types-tqdm, types-urllib3, horde_sdk==0.9.1]