DualCFG support#562 New issue Closed claychinasky using SamplerCustomAdvanced node with dualCFG or PerpNegGuider, returns this error: Error occurred when executing SamplerCustomAdvanced: tuple index out of range bypassing IPAdapterFaceID node, error doesn't appear and generation works as expected. ...
We read every piece of feedback, and take your input very seriously. Include my email address so I can be contacted Cancel Submit feedback Saved searches Use saved searches to filter your results more quickly Cancel Create saved search Sign in Sign up Reseting focus {...
{}) }, } RETURN_TYPES = ("IMAGE",) RETURN_NAMES = ("image_out",) CATEGORY = "examples" FUNCTION = "invert" def invert(self, image_in): image_out = 1 - image_in return (image_out,)
for index in range(10): patch_kwargs["module_key"] = str(number*2+1) set_model_patch_replace(work_model, patch_kwargs, ("middle", 1, index)) number += 1 return (work_model,) class ApplyPulidAdvanced(ApplyPulid): @classmethod def INPUT_TYPES(s): return { "required...
for i in range(start_idx, end_idx - 1): pt1 = tuple(map(int, keypoints[i])) pt2 = tuple(map(int, keypoints[i+1])) if all(0 <= c < d for c, d in zip(pt1 + pt2, (width, height) * 2)): cv2.line(blank_image, pt1, pt2, color, thickness=1) if end_...
2)RETURN_TYPES是对输出的类型描述,这里的类型并不一定是要真实存在的类型,但是一定要和下游node的输入类型对齐,比如class KSampler依赖CLIPTextEncode的返回值CONDITIONING,则KSampler对应的输入positive类型也要文本对齐CONDITIONING。另外node的输出是tuple元素,每个位置要和RETURN_TYPES对齐。
Discussions Collaborate outside of code Code Search Find more, search less Explore All features Documentation GitHub Skills Blog Solutions By company size Enterprises Small and medium teams Startups By use case DevSecOps DevOps CI/CD View all use cases By industry Healthcare Financial ...
DeepFuze is a state-of-the-art deep learning tool that seamlessly integrates with ComfyUI to revolutionize facial transformations, lipsyncing, Face Swapping, Lipsync Translation, video generation, and voice cloning. - ComfyUI-DeepFuze/nodes.py at main ·
Commit ImageRewardFilter node, can filter out poor quality pictures. Ultra nodes add VITMatte(local) method, You can choose this method to avoid accessing huggingface.co if you have already downloaded the model before. Commit HDR Effect node,it enhances the dynamic range and visual appeal of in...
with self.mutex: for x in range(len(self.queue)): if function(self.queue[x]): if len(self.queue) == 1: self.wipe_queue() else: self.queue.pop(x) heapq.heapify(self.queue) self.server.queue_updated() return True return False def...