-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy path__init__.py
30 lines (28 loc) · 1.22 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
from . import extra_samplers
from . import nodes
extra_samplers.add_samplers()
#extra_samplers.add_schedulers()
NODE_CLASS_MAPPINGS = {
## K-Samplers
"SamplerCustomNoise": nodes.SamplerCustomNoise,
"SamplerCustomNoiseDuo": nodes.SamplerCustomNoiseDuo,
"SamplerCustomModelMixtureDuo": nodes.SamplerCustomModelMixtureDuo,
# Guiders
"GeometricCFGGuider": nodes.GeometricCFGGuider,
"ImageAssistedCFGGuider": nodes.ImageGuidedCFGGuider,
"ScaledCFGGuider": nodes.ScaledCFGGuider,
"WarmupDecayCFGGuider": nodes.WarmupDecayCFGGuider,
"MegaCFGGuider": nodes.MegaCFGGuider,
## Samplers
"SamplerRES_Momentumized": nodes.SamplerRES_MOMENTUMIZED,
"SamplerDPMPP_DualSDE_Momentumized": nodes.SamplerDPMPP_DUALSDE_MOMENTUMIZED,
"SamplerCLYB_4M_SDE_Momentumized": nodes.SamplerCLYB_4M_SDE_MOMENTUMIZED,
"SamplerTTM": nodes.SamplerTTM,
"SamplerLCMCustom": nodes.SamplerLCMCustom,
"SamplerEulerAncestralDancing_Experimental": nodes.SamplerEULER_ANCESTRAL_DANCING,
"SamplerDPMPP_3M_SDE_DynETA": nodes.SamplerDPMPP_3M_SDE_DYN_ETA,
"SamplerSupreme": nodes.SamplerSUPREME,
### Schedulers
"SimpleExponentialScheduler": nodes.SimpleExponentialScheduler,
}
__all__ = ['NODE_CLASS_MAPPINGS']