"...git@developer.sourcefind.cn:chenpangpang/open-webui.git" did not exist on "2396010d6ce4c7ab7619af6d1c7316fa89a8196e"
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: ...@@ -37,7 +37,7 @@ class ModelSubtract:
RETURN_TYPES = ("MODEL",) RETURN_TYPES = ("MODEL",)
FUNCTION = "merge" FUNCTION = "merge"
CATEGORY = "_for_testing/model_merging" CATEGORY = "advanced/model_merging"
def merge(self, model1, model2, multiplier): def merge(self, model1, model2, multiplier):
m = model1.clone() m = model1.clone()
...@@ -55,7 +55,7 @@ class ModelAdd: ...@@ -55,7 +55,7 @@ class ModelAdd:
RETURN_TYPES = ("MODEL",) RETURN_TYPES = ("MODEL",)
FUNCTION = "merge" FUNCTION = "merge"
CATEGORY = "_for_testing/model_merging" CATEGORY = "advanced/model_merging"
def merge(self, model1, model2): def merge(self, model1, model2):
m = model1.clone() 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