forked from kustomzone/ComfyUI-Fluxtapoz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__init__.py
39 lines (35 loc) · 1.71 KB
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
from .nodes.flip_sigmas_node import InFluxFlipSigmasNode
from .nodes.influx_model_pred_node import InFluxModelSamplingPredNode, OutFluxModelSamplingPredNode
from .nodes.flux_deguidance_node import FluxDeGuidance
from .nodes.inverse_sampler_node import FluxInverseSamplerNode
from .nodes.apply_ref_flux import ApplyRefFluxNode, ConfigureRefFluxNode
from .nodes.mix_noise_node import FluxNoiseMixerNode
from .nodes.rectified_sampler_nodes import FluxForwardODESamplerNode, FluxReverseODESamplerNode
NODE_CLASS_MAPPINGS = {
"InFluxFlipSigmas": InFluxFlipSigmasNode,
"InFluxModelSamplingPred": InFluxModelSamplingPredNode,
"OutFluxModelSamplingPred": OutFluxModelSamplingPredNode,
"FluxDeGuidance": FluxDeGuidance,
"FluxInverseSampler": FluxInverseSamplerNode,
"ApplyRefFlux": ApplyRefFluxNode,
"ConfigureRefFlux": ConfigureRefFluxNode,
"FluxNoiseMixer": FluxNoiseMixerNode,
"FluxForwardODESampler": FluxForwardODESamplerNode,
"FluxReverseODESampler": FluxReverseODESamplerNode,
# "AddFluxFlow": AddFluxFlowNode,
# "ApplyFluxRaveAttention": ApplyFluxRaveAttentionNode,
}
NODE_DISPLAY_NAME_MAPPINGS = {
"InFluxFlipSigmas": "Flip Flux Sigmas",
"InFluxModelSamplingPred": "Inverse Flux Model Pred",
"OutFluxModelSamplingPred": "Outverse Flux Model Pred",
"FluxDeGuidance": "Flux DeGuidance",
"FluxInverseSampler": "Flux Inverse Sampler",
"ApplyRefFlux": "Apply Ref Flux Model",
"ConfigureRefFlux": "Configure Ref for Flux",
"FluxNoiseMixer": "Flux Mix Noise",
"FluxForwardODESampler": "Flux Forward ODE Sampler",
"FluxReverseODESampler": "Flux Reverse ODE Sampler",
# "AddFluxFlow": "Add Flux Flow",
# "ApplyFluxRaveAttention": "Apply Flux Rave Attn",
}