class UNETLoader: @classmethod def INPUT_TYPES(s): return {"required": { "unet_name": (folder_paths.get_filename_list("unet"), ), return {"required": { "unet_name": (folder_paths.get_filename_list("diffusion_models"), ), "weight_dtype": (["default", "fp8_e4m3fn", "fp8_e5...
comfy/sd.py +68-1 Original file line numberDiff line numberDiff line change @@ -1049,7 +1049,7 @@ class WeightsLoader(torch.nn.Module): 1049 1049 clipvision = clip_vision.load_clipvision_from_sd(sd, model_config.clip_vision_prefix, True) 1050 1050 1051 1051 offload_device =...
@Shiroha-Key Traceback (most recent call last): File "/home/noe/Documentos/ComfyUI/nodes.py", line 1993, in load_custom_node module_spec.loader.exec_module(module) File "<frozen importlib._bootstrap_external>", line 994, in exec_module File "<frozen importlib._bootstrap>", line 488,...
git clone https://github.com/leeguandong/ComfyUI_VideoEditing.git 重启ComfyUI Use 节点: "Load Video to Images": 将视频转成图片 "Image to Canny": controlnet使用的canny算子 "ControlNet Model Loader": controlnet模型加载 "VEDit Model Loader": SD 模型加载 "VEdit Sampler": 推理 StarsAbout...
class UNETLoader: @classmethod def INPUT_TYPES(s): return {"required": { "unet_name": (folder_paths.get_filename_list("unet"), ), return {"required": { "unet_name": (folder_paths.get_filename_list("diffusion_models"), ), "weight_dtype": (["default", "fp8_e4m3fn", "fp8_e5...
567 + model = comfy.sd.load_unet(unet_path) 568 + return (model,) 569 + 555 570 class CLIPLoader: 556 571 @classmethod 557 572 def INPUT_TYPES(s): @@ -1371,6 +1386,7 @@ def expand_image(self, image, left, top, right, bottom, feathering): 1371 1386 "LatentCrop"...