@@ -25,7 +25,7 @@ class UNetSelfAttentionMultiply(io.ComfyNode):
2525 def define_schema (cls ) -> io .Schema :
2626 return io .Schema (
2727 node_id = "UNetSelfAttentionMultiply" ,
28- category = "_for_testing /attention_experiments" ,
28+ category = "experimental /attention_experiments" ,
2929 inputs = [
3030 io .Model .Input ("model" ),
3131 io .Float .Input ("q" , default = 1.0 , min = 0.0 , max = 10.0 , step = 0.01 , advanced = True ),
@@ -48,7 +48,7 @@ class UNetCrossAttentionMultiply(io.ComfyNode):
4848 def define_schema (cls ) -> io .Schema :
4949 return io .Schema (
5050 node_id = "UNetCrossAttentionMultiply" ,
51- category = "_for_testing /attention_experiments" ,
51+ category = "experimental /attention_experiments" ,
5252 inputs = [
5353 io .Model .Input ("model" ),
5454 io .Float .Input ("q" , default = 1.0 , min = 0.0 , max = 10.0 , step = 0.01 , advanced = True ),
@@ -72,7 +72,7 @@ def define_schema(cls) -> io.Schema:
7272 return io .Schema (
7373 node_id = "CLIPAttentionMultiply" ,
7474 search_aliases = ["clip attention scale" , "text encoder attention" ],
75- category = "_for_testing /attention_experiments" ,
75+ category = "experimental /attention_experiments" ,
7676 inputs = [
7777 io .Clip .Input ("clip" ),
7878 io .Float .Input ("q" , default = 1.0 , min = 0.0 , max = 10.0 , step = 0.01 , advanced = True ),
@@ -106,7 +106,7 @@ class UNetTemporalAttentionMultiply(io.ComfyNode):
106106 def define_schema (cls ) -> io .Schema :
107107 return io .Schema (
108108 node_id = "UNetTemporalAttentionMultiply" ,
109- category = "_for_testing /attention_experiments" ,
109+ category = "experimental /attention_experiments" ,
110110 inputs = [
111111 io .Model .Input ("model" ),
112112 io .Float .Input ("self_structural" , default = 1.0 , min = 0.0 , max = 10.0 , step = 0.01 , advanced = True ),
0 commit comments