Skip to content

Commit

Permalink
Move some nodes out of _for_testing.
Browse files Browse the repository at this point in the history
  • Loading branch information
comfyanonymous committed Sep 25, 2024
1 parent bdd4a22 commit 037c315
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion comfy_extras/nodes_model_downscale.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def INPUT_TYPES(s):
RETURN_TYPES = ("MODEL",)
FUNCTION = "patch"

CATEGORY = "_for_testing"
CATEGORY = "model_patches/unet"

def patch(self, model, block_number, downscale_factor, start_percent, end_percent, downscale_after_skip, downscale_method, upscale_method):
model_sampling = model.get_model_object("model_sampling")
Expand Down
1 change: 1 addition & 0 deletions comfy_extras/nodes_stable_cascade.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ def INPUT_TYPES(s):
RETURN_NAMES = ("controlnet_input", "stage_c", "stage_b")
FUNCTION = "generate"

EXPERIMENTAL = True
CATEGORY = "_for_testing/stable_cascade"

def generate(self, image, vae):
Expand Down
2 changes: 1 addition & 1 deletion comfy_extras/nodes_tomesd.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ def INPUT_TYPES(s):
RETURN_TYPES = ("MODEL",)
FUNCTION = "patch"

CATEGORY = "_for_testing"
CATEGORY = "model_patches/unet"

def patch(self, model, ratio):
self.u = None
Expand Down
2 changes: 1 addition & 1 deletion comfy_extras/nodes_video_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def linear_cfg(args):
return (m, )

class ImageOnlyCheckpointSave(comfy_extras.nodes_model_merging.CheckpointSave):
CATEGORY = "_for_testing"
CATEGORY = "advanced/model_merging"

@classmethod
def INPUT_TYPES(s):
Expand Down

0 comments on commit 037c315

Please sign in to comment.