Commit 0665749b authored by comfyanonymous's avatar comfyanonymous
Browse files

Move ModelSubtract and ModelAdd to advanced/model_merging

parent d6d9b834
......@@ -37,7 +37,7 @@ class ModelSubtract:
RETURN_TYPES = ("MODEL",)
FUNCTION = "merge"
CATEGORY = "_for_testing/model_merging"
CATEGORY = "advanced/model_merging"
def merge(self, model1, model2, multiplier):
m = model1.clone()
......@@ -55,7 +55,7 @@ class ModelAdd:
RETURN_TYPES = ("MODEL",)
FUNCTION = "merge"
CATEGORY = "_for_testing/model_merging"
CATEGORY = "advanced/model_merging"
def merge(self, model1, model2):
m = model1.clone()
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment