From 69a824e9a458a72225ea9e2e2874815bf0052f78 Mon Sep 17 00:00:00 2001 From: comfyanonymous Date: Sun, 8 Oct 2023 03:20:35 -0400 Subject: [PATCH] Move _for_testing/custom_sampling nodes to sampling/custom_sampling. --- comfy_extras/nodes_custom_sampler.py | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/comfy_extras/nodes_custom_sampler.py b/comfy_extras/nodes_custom_sampler.py index 42a1fd6b..9391c714 100644 --- a/comfy_extras/nodes_custom_sampler.py +++ b/comfy_extras/nodes_custom_sampler.py @@ -15,7 +15,7 @@ class BasicScheduler: } } RETURN_TYPES = ("SIGMAS",) - CATEGORY = "_for_testing/custom_sampling" + CATEGORY = "sampling/custom_sampling" FUNCTION = "get_sigmas" @@ -35,7 +35,7 @@ class KarrasScheduler: } } RETURN_TYPES = ("SIGMAS",) - CATEGORY = "_for_testing/custom_sampling" + CATEGORY = "sampling/custom_sampling" FUNCTION = "get_sigmas" @@ -53,7 +53,7 @@ class ExponentialScheduler: } } RETURN_TYPES = ("SIGMAS",) - CATEGORY = "_for_testing/custom_sampling" + CATEGORY = "sampling/custom_sampling" FUNCTION = "get_sigmas" @@ -72,7 +72,7 @@ class PolyexponentialScheduler: } } RETURN_TYPES = ("SIGMAS",) - CATEGORY = "_for_testing/custom_sampling" + CATEGORY = "sampling/custom_sampling" FUNCTION = "get_sigmas" @@ -91,7 +91,7 @@ class VPScheduler: } } RETURN_TYPES = ("SIGMAS",) - CATEGORY = "_for_testing/custom_sampling" + CATEGORY = "sampling/custom_sampling" FUNCTION = "get_sigmas" @@ -108,7 +108,7 @@ class SplitSigmas: } } RETURN_TYPES = ("SIGMAS","SIGMAS") - CATEGORY = "_for_testing/custom_sampling" + CATEGORY = "sampling/custom_sampling" FUNCTION = "get_sigmas" @@ -125,7 +125,7 @@ class KSamplerSelect: } } RETURN_TYPES = ("SAMPLER",) - CATEGORY = "_for_testing/custom_sampling" + CATEGORY = "sampling/custom_sampling" FUNCTION = "get_sampler" @@ -144,7 +144,7 @@ class SamplerDPMPP_2M_SDE: } } RETURN_TYPES = ("SAMPLER",) - CATEGORY = "_for_testing/custom_sampling" + CATEGORY = "sampling/custom_sampling" FUNCTION = "get_sampler" @@ -168,7 +168,7 @@ class SamplerDPMPP_SDE: } } RETURN_TYPES = ("SAMPLER",) - CATEGORY = "_for_testing/custom_sampling" + CATEGORY = "sampling/custom_sampling" FUNCTION = "get_sampler" @@ -201,7 +201,7 @@ class SamplerCustom: FUNCTION = "sample" - CATEGORY = "_for_testing/custom_sampling" + CATEGORY = "sampling/custom_sampling" def sample(self, model, add_noise, noise_seed, cfg, positive, negative, sampler, sigmas, latent_image): latent = latent_image