mirror of
https://git.datalinker.icu/ltdrdata/ComfyUI-Manager
synced 2025-12-14 16:44:27 +08:00
update DB
This commit is contained in:
parent
2f07852abb
commit
e18197029c
@ -3518,6 +3518,7 @@
|
|||||||
"RepeatLatentBatch",
|
"RepeatLatentBatch",
|
||||||
"RescaleCFG",
|
"RescaleCFG",
|
||||||
"SDTurboScheduler",
|
"SDTurboScheduler",
|
||||||
|
"SD_4XUpscale_Conditioning",
|
||||||
"SVD_img2vid_Conditioning",
|
"SVD_img2vid_Conditioning",
|
||||||
"SamplerCustom",
|
"SamplerCustom",
|
||||||
"SamplerDPMPP_2M_SDE",
|
"SamplerDPMPP_2M_SDE",
|
||||||
@ -3993,6 +3994,7 @@
|
|||||||
],
|
],
|
||||||
"https://github.com/florestefano1975/comfyui-prompt-composer": [
|
"https://github.com/florestefano1975/comfyui-prompt-composer": [
|
||||||
[
|
[
|
||||||
|
"PromptComposerCustomLists",
|
||||||
"PromptComposerEffect",
|
"PromptComposerEffect",
|
||||||
"PromptComposerGrouping",
|
"PromptComposerGrouping",
|
||||||
"PromptComposerMerge",
|
"PromptComposerMerge",
|
||||||
@ -5335,6 +5337,7 @@
|
|||||||
"https://github.com/pythongosssss/ComfyUI-Custom-Scripts": [
|
"https://github.com/pythongosssss/ComfyUI-Custom-Scripts": [
|
||||||
[
|
[
|
||||||
"CheckpointLoader|pysssss",
|
"CheckpointLoader|pysssss",
|
||||||
|
"ConstrainImageforVideo|pysssss",
|
||||||
"ConstrainImage|pysssss",
|
"ConstrainImage|pysssss",
|
||||||
"LoadText|pysssss",
|
"LoadText|pysssss",
|
||||||
"LoraLoader|pysssss",
|
"LoraLoader|pysssss",
|
||||||
|
|||||||
@ -121,7 +121,7 @@
|
|||||||
"url": "https://huggingface.co/uwg/upscaler/resolve/main/ESRGAN/8x_NMKD-Superscale_150000_G.pth"
|
"url": "https://huggingface.co/uwg/upscaler/resolve/main/ESRGAN/8x_NMKD-Superscale_150000_G.pth"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "LDSR",
|
"name": "LDSR(Latent Diffusion Super Resolution)",
|
||||||
"type": "upscale",
|
"type": "upscale",
|
||||||
"base": "upscale",
|
"base": "upscale",
|
||||||
"save_path": "upscale_models/ldsr",
|
"save_path": "upscale_models/ldsr",
|
||||||
@ -130,6 +130,16 @@
|
|||||||
"filename": "last.ckpt",
|
"filename": "last.ckpt",
|
||||||
"url": "https://heibox.uni-heidelberg.de/f/578df07c8fc04ffbadf3/?dl=1"
|
"url": "https://heibox.uni-heidelberg.de/f/578df07c8fc04ffbadf3/?dl=1"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "stabilityai/stable-diffusion-x4-upscaler",
|
||||||
|
"type": "checkpoint",
|
||||||
|
"base": "upscale",
|
||||||
|
"save_path": "checkpoints/upscale",
|
||||||
|
"description": "[3.53GB] This upscaling model is a latent text-guided diffusion model and should be used with SD_4XUpscale_Conditioning and KSampler.",
|
||||||
|
"reference": "https://huggingface.co/stabilityai/stable-diffusion-x4-upscaler",
|
||||||
|
"filename": "x4-upscaler-ema.safetensors",
|
||||||
|
"url": "https://huggingface.co/stabilityai/stable-diffusion-x4-upscaler/resolve/main/x4-upscaler-ema.safetensors"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "Inswapper-fp16 (face swap)",
|
"name": "Inswapper-fp16 (face swap)",
|
||||||
"type": "insightface",
|
"type": "insightface",
|
||||||
|
|||||||
@ -10,6 +10,16 @@
|
|||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
|
{
|
||||||
|
"author": "solarpush",
|
||||||
|
"title": "comfyui_sendimage_node",
|
||||||
|
"reference": "https://github.com/solarpush/comfyui_sendimage_node",
|
||||||
|
"files": [
|
||||||
|
"https://github.com/solarpush/comfyui_sendimage_node"
|
||||||
|
],
|
||||||
|
"install_type": "git-clone",
|
||||||
|
"description": "Send images to the pod."
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"author": "kadirnar",
|
"author": "kadirnar",
|
||||||
"title": "comfyui_helpers",
|
"title": "comfyui_helpers",
|
||||||
|
|||||||
@ -3518,6 +3518,7 @@
|
|||||||
"RepeatLatentBatch",
|
"RepeatLatentBatch",
|
||||||
"RescaleCFG",
|
"RescaleCFG",
|
||||||
"SDTurboScheduler",
|
"SDTurboScheduler",
|
||||||
|
"SD_4XUpscale_Conditioning",
|
||||||
"SVD_img2vid_Conditioning",
|
"SVD_img2vid_Conditioning",
|
||||||
"SamplerCustom",
|
"SamplerCustom",
|
||||||
"SamplerDPMPP_2M_SDE",
|
"SamplerDPMPP_2M_SDE",
|
||||||
@ -3993,6 +3994,7 @@
|
|||||||
],
|
],
|
||||||
"https://github.com/florestefano1975/comfyui-prompt-composer": [
|
"https://github.com/florestefano1975/comfyui-prompt-composer": [
|
||||||
[
|
[
|
||||||
|
"PromptComposerCustomLists",
|
||||||
"PromptComposerEffect",
|
"PromptComposerEffect",
|
||||||
"PromptComposerGrouping",
|
"PromptComposerGrouping",
|
||||||
"PromptComposerMerge",
|
"PromptComposerMerge",
|
||||||
@ -5335,6 +5337,7 @@
|
|||||||
"https://github.com/pythongosssss/ComfyUI-Custom-Scripts": [
|
"https://github.com/pythongosssss/ComfyUI-Custom-Scripts": [
|
||||||
[
|
[
|
||||||
"CheckpointLoader|pysssss",
|
"CheckpointLoader|pysssss",
|
||||||
|
"ConstrainImageforVideo|pysssss",
|
||||||
"ConstrainImage|pysssss",
|
"ConstrainImage|pysssss",
|
||||||
"LoadText|pysssss",
|
"LoadText|pysssss",
|
||||||
"LoraLoader|pysssss",
|
"LoraLoader|pysssss",
|
||||||
|
|||||||
@ -1,5 +1,6 @@
|
|||||||
{
|
{
|
||||||
"models": [
|
"models": [
|
||||||
|
|
||||||
{
|
{
|
||||||
"name": "ControlNet-HandRefiner-pruned (inpaint-depth-hand; fp16)",
|
"name": "ControlNet-HandRefiner-pruned (inpaint-depth-hand; fp16)",
|
||||||
"type": "controlnet",
|
"type": "controlnet",
|
||||||
@ -11,7 +12,17 @@
|
|||||||
"url": "https://huggingface.co/hr16/ControlNet-HandRefiner-pruned/resolve/main/control_sd15_inpaint_depth_hand_fp16.safetensors"
|
"url": "https://huggingface.co/hr16/ControlNet-HandRefiner-pruned/resolve/main/control_sd15_inpaint_depth_hand_fp16.safetensors"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "LDSR",
|
"name": "stabilityai/stable-diffusion-x4-upscaler",
|
||||||
|
"type": "checkpoint",
|
||||||
|
"base": "upscale",
|
||||||
|
"save_path": "checkpoints/upscale",
|
||||||
|
"description": "[3.53GB] This upscaling model is a latent text-guided diffusion model and should be used with SD_4XUpscale_Conditioning and KSampler.",
|
||||||
|
"reference": "https://huggingface.co/stabilityai/stable-diffusion-x4-upscaler",
|
||||||
|
"filename": "x4-upscaler-ema.safetensors",
|
||||||
|
"url": "https://huggingface.co/stabilityai/stable-diffusion-x4-upscaler/resolve/main/x4-upscaler-ema.safetensors"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "LDSR(Latent Diffusion Super Resolution)",
|
||||||
"type": "upscale",
|
"type": "upscale",
|
||||||
"base": "upscale",
|
"base": "upscale",
|
||||||
"save_path": "upscale_models/ldsr",
|
"save_path": "upscale_models/ldsr",
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user