Skip to content

Commit

Permalink
modify the code
Browse files Browse the repository at this point in the history
  • Loading branch information
Wanghanying committed Dec 11, 2024
1 parent 0540ef9 commit 883608a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions bizyair_extras/nodes_comfyui_rf_inversion.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from bizyair import BizyAirBaseNode, data_types


class OutFluxModelSamplingPredNode(BizyAirBaseNode):
class OutFluxModelSamplingPred(BizyAirBaseNode):
DESCRIPTION = ""
RETURN_TYPES = (data_types.MODEL,)
NODE_DISPLAY_NAME = "Outverse Flux Model Pred"
Expand Down Expand Up @@ -48,7 +48,7 @@ def INPUT_TYPES(s):
}


class InFluxModelSamplingPredNode(BizyAirBaseNode):
class InFluxModelSamplingPred(BizyAirBaseNode):
RETURN_TYPES = (data_types.MODEL,)
CATEGORY = "sampling/custom_sampling/samplers"
NODE_DISPLAY_NAME = "Inverse Flux Model Pred"
Expand Down Expand Up @@ -88,7 +88,7 @@ def INPUT_TYPES(s):
}


class FluxForwardODESamplerNode(BizyAirBaseNode):
class FluxForwardODESampler(BizyAirBaseNode):
RETURN_TYPES = ("SAMPLER",)
# FUNCTION = "build"
CATEGORY = "sampling/custom_sampling/samplers"
Expand All @@ -109,7 +109,7 @@ def INPUT_TYPES(s):
}


class FluxReverseODESamplerNode(BizyAirBaseNode):
class FluxReverseODESampler(BizyAirBaseNode):
RETURN_TYPES = ("SAMPLER",)
# FUNCTION = "build"
CATEGORY = "sampling/custom_sampling/samplers"
Expand Down

0 comments on commit 883608a

Please sign in to comment.