Freak-ppa commited on
Commit
382640a
1 Parent(s): 68de648

Upload 37 files

Browse files
Files changed (37) hide show
  1. ComfyUI/models/embeddings/put_embeddings_or_textual_inversion_concepts_here +0 -0
  2. ComfyUI/models/gligen/put_gligen_models_here +0 -0
  3. ComfyUI/models/grounding-dino/GroundingDINO_SwinB.cfg.py +43 -0
  4. ComfyUI/models/grounding-dino/groundingdino_swinb_cogcoor.pth +3 -0
  5. ComfyUI/models/hypernetworks/put_hypernetworks_here +0 -0
  6. ComfyUI/models/inpaint/brushnet_xl/random_mask.safetensors +3 -0
  7. ComfyUI/models/inpaint/brushnet_xl/segmentation_mask.safetensors +3 -0
  8. ComfyUI/models/inpaint/powerpaint/diffusion_pytorch_model.safetensors +3 -0
  9. ComfyUI/models/inpaint/powerpaint/pytorch_model.bin +3 -0
  10. ComfyUI/models/insightface/inswapper_128.onnx +3 -0
  11. ComfyUI/models/insightface/models/antelopev2/1k3d68.onnx +3 -0
  12. ComfyUI/models/insightface/models/antelopev2/2d106det.onnx +3 -0
  13. ComfyUI/models/insightface/models/antelopev2/genderage.onnx +3 -0
  14. ComfyUI/models/insightface/models/antelopev2/glintr100.onnx +3 -0
  15. ComfyUI/models/insightface/models/antelopev2/scrfd_10g_bnkps.onnx +3 -0
  16. ComfyUI/models/insightface/models/buffalo_l/1k3d68.onnx +3 -0
  17. ComfyUI/models/insightface/models/buffalo_l/2d106det.onnx +3 -0
  18. ComfyUI/models/insightface/models/buffalo_l/det_10g.onnx +3 -0
  19. ComfyUI/models/insightface/models/buffalo_l/genderage.onnx +3 -0
  20. ComfyUI/models/insightface/models/buffalo_l/w600k_r50.onnx +3 -0
  21. ComfyUI/models/instantid/instantid-ip-adapter.bin +3 -0
  22. ComfyUI/models/ipadapter/ip-adapter-faceid-plusv2_sd15.bin +3 -0
  23. ComfyUI/models/ipadapter/ip-adapter-faceid-plusv2_sdxl.bin +3 -0
  24. ComfyUI/models/ipadapter/ip-adapter-full-face_sd15.safetensors +3 -0
  25. ComfyUI/models/ipadapter/ip-adapter-plus-face_sdxl_vit-h.safetensors +3 -0
  26. ComfyUI/models/loras/StickersRedmond.safetensors +3 -0
  27. ComfyUI/models/loras/ip-adapter-faceid-plusv2_sd15_lora.safetensors +3 -0
  28. ComfyUI/models/loras/ip-adapter-faceid-plusv2_sdxl_lora.safetensors +3 -0
  29. ComfyUI/models/loras/put_loras_here +0 -0
  30. ComfyUI/models/photomaker/put_photomaker_models_here +0 -0
  31. ComfyUI/models/sams/sam_hq_vit_l.pth +3 -0
  32. ComfyUI/models/style_models/put_t2i_style_model_here +0 -0
  33. ComfyUI/models/unet/put_unet_files_here +0 -0
  34. ComfyUI/models/upscale_models/4x-UltraSharp.pth +3 -0
  35. ComfyUI/models/upscale_models/put_esrgan_and_other_upscale_models_here +0 -0
  36. ComfyUI/models/vae/put_vae_here +0 -0
  37. ComfyUI/models/vae_approx/put_taesd_encoder_pth_and_taesd_decoder_pth_here +0 -0
ComfyUI/models/embeddings/put_embeddings_or_textual_inversion_concepts_here ADDED
File without changes
ComfyUI/models/gligen/put_gligen_models_here ADDED
File without changes
ComfyUI/models/grounding-dino/GroundingDINO_SwinB.cfg.py ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ batch_size = 1
2
+ modelname = "groundingdino"
3
+ backbone = "swin_B_384_22k"
4
+ position_embedding = "sine"
5
+ pe_temperatureH = 20
6
+ pe_temperatureW = 20
7
+ return_interm_indices = [1, 2, 3]
8
+ backbone_freeze_keywords = None
9
+ enc_layers = 6
10
+ dec_layers = 6
11
+ pre_norm = False
12
+ dim_feedforward = 2048
13
+ hidden_dim = 256
14
+ dropout = 0.0
15
+ nheads = 8
16
+ num_queries = 900
17
+ query_dim = 4
18
+ num_patterns = 0
19
+ num_feature_levels = 4
20
+ enc_n_points = 4
21
+ dec_n_points = 4
22
+ two_stage_type = "standard"
23
+ two_stage_bbox_embed_share = False
24
+ two_stage_class_embed_share = False
25
+ transformer_activation = "relu"
26
+ dec_pred_bbox_embed_share = True
27
+ dn_box_noise_scale = 1.0
28
+ dn_label_noise_ratio = 0.5
29
+ dn_label_coef = 1.0
30
+ dn_bbox_coef = 1.0
31
+ embed_init_tgt = True
32
+ dn_labelbook_size = 2000
33
+ max_text_len = 256
34
+ text_encoder_type = "bert-base-uncased"
35
+ use_text_enhancer = True
36
+ use_fusion_layer = True
37
+ use_checkpoint = True
38
+ use_transformer_ckpt = True
39
+ use_text_cross_attention = True
40
+ text_dropout = 0.0
41
+ fusion_dropout = 0.0
42
+ fusion_droppath = 0.1
43
+ sub_sentence_present = True
ComfyUI/models/grounding-dino/groundingdino_swinb_cogcoor.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:46270f7a822e6906b655b729c90613e48929d0f2bb8b9b76fd10a856f3ac6ab7
3
+ size 938057991
ComfyUI/models/hypernetworks/put_hypernetworks_here ADDED
File without changes
ComfyUI/models/inpaint/brushnet_xl/random_mask.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d968334b1e1553bbc450dd1876840732ef8726593bde51f1f79a19dc82770a55
3
+ size 1493356392
ComfyUI/models/inpaint/brushnet_xl/segmentation_mask.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a0f186ec0351102527d462d349d6dc844e11c8f004e5513cf921b156f7fff3ac
3
+ size 1493356392
ComfyUI/models/inpaint/powerpaint/diffusion_pytorch_model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:530f2886ef5bcdf199269ec344155a517639ba64219b85eeb23fd86aab93147f
3
+ size 3544366408
ComfyUI/models/inpaint/powerpaint/pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:73709b4360ca06ef990a67d090e8d81a4310943d67a88845653fc4e9f7f26b65
3
+ size 492401329
ComfyUI/models/insightface/inswapper_128.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e4a3f08c753cb72d04e10aa0f7dbe3deebbf39567d4ead6dce08e98aa49e16af
3
+ size 554253681
ComfyUI/models/insightface/models/antelopev2/1k3d68.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:df5c06b8a0c12e422b2ed8947b8869faa4105387f199c477af038aa01f9a45cc
3
+ size 143607619
ComfyUI/models/insightface/models/antelopev2/2d106det.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f001b856447c413801ef5c42091ed0cd516fcd21f2d6b79635b1e733a7109dbf
3
+ size 5030888
ComfyUI/models/insightface/models/antelopev2/genderage.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4fde69b1c810857b88c64a335084f1c3fe8f01246c9a191b48c7bb756d6652fb
3
+ size 1322532
ComfyUI/models/insightface/models/antelopev2/glintr100.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4ab1d6435d639628a6f3e5008dd4f929edf4c4124b1a7169e1048f9fef534cdf
3
+ size 260665334
ComfyUI/models/insightface/models/antelopev2/scrfd_10g_bnkps.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5838f7fe053675b1c7a08b633df49e7af5495cee0493c7dcf6697200b85b5b91
3
+ size 16923827
ComfyUI/models/insightface/models/buffalo_l/1k3d68.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:df5c06b8a0c12e422b2ed8947b8869faa4105387f199c477af038aa01f9a45cc
3
+ size 143607619
ComfyUI/models/insightface/models/buffalo_l/2d106det.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f001b856447c413801ef5c42091ed0cd516fcd21f2d6b79635b1e733a7109dbf
3
+ size 5030888
ComfyUI/models/insightface/models/buffalo_l/det_10g.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5838f7fe053675b1c7a08b633df49e7af5495cee0493c7dcf6697200b85b5b91
3
+ size 16923827
ComfyUI/models/insightface/models/buffalo_l/genderage.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4fde69b1c810857b88c64a335084f1c3fe8f01246c9a191b48c7bb756d6652fb
3
+ size 1322532
ComfyUI/models/insightface/models/buffalo_l/w600k_r50.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4c06341c33c2ca1f86781dab0e829f88ad5b64be9fba56e56bc9ebdefc619e43
3
+ size 174383860
ComfyUI/models/instantid/instantid-ip-adapter.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:02b3618e36d803784166660520098089a81388e61a93ef8002aa79a5b1c546e1
3
+ size 1691134141
ComfyUI/models/ipadapter/ip-adapter-faceid-plusv2_sd15.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:26d0d86a1d60d6cc811d3b8862178b461e1eeb651e6fe2b72ba17aa95411e313
3
+ size 156558509
ComfyUI/models/ipadapter/ip-adapter-faceid-plusv2_sdxl.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c6945d82b543700cc3ccbb98d363b837e9c596281607857c74b713a876daf5fb
3
+ size 1487555181
ComfyUI/models/ipadapter/ip-adapter-full-face_sd15.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f4a17fb643bf876235a45a0e87a49da2855be6584b28ca04c62a97ab5ff1c6f3
3
+ size 43592352
ComfyUI/models/ipadapter/ip-adapter-plus-face_sdxl_vit-h.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:677ad8860204f7d0bfba12d29e6c31ded9beefdf3e4bbd102518357d31a292c1
3
+ size 847517512
ComfyUI/models/loras/StickersRedmond.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:927a840722d1ac9103223c09da55cc3ae750300e1c0e22a15ffcf460ac6f8a56
3
+ size 170540036
ComfyUI/models/loras/ip-adapter-faceid-plusv2_sd15_lora.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8abff87a15a049f3e0186c2e82c1c8e77783baf2cfb63f34c412656052eb57b0
3
+ size 51059544
ComfyUI/models/loras/ip-adapter-faceid-plusv2_sdxl_lora.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f24b4bb2dad6638a09c00f151cde84991baf374409385bcbab53c1871a30cb7b
3
+ size 371842896
ComfyUI/models/loras/put_loras_here ADDED
File without changes
ComfyUI/models/photomaker/put_photomaker_models_here ADDED
File without changes
ComfyUI/models/sams/sam_hq_vit_l.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e1a6c385d62bf005ded91a54d5ec55c985cfc4103ef89c08d90f39f04934c343
3
+ size 1254865805
ComfyUI/models/style_models/put_t2i_style_model_here ADDED
File without changes
ComfyUI/models/unet/put_unet_files_here ADDED
File without changes
ComfyUI/models/upscale_models/4x-UltraSharp.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a5812231fc936b42af08a5edba784195495d303d5b3248c24489ef0c4021fe01
3
+ size 66961958
ComfyUI/models/upscale_models/put_esrgan_and_other_upscale_models_here ADDED
File without changes
ComfyUI/models/vae/put_vae_here ADDED
File without changes
ComfyUI/models/vae_approx/put_taesd_encoder_pth_and_taesd_decoder_pth_here ADDED
File without changes