forked from ClownsharkBatwing/RES4LYF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
__init__.py
71 lines (56 loc) · 2.73 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
from . import extra_samplers
from . import samplers
from . import sigmas
from . import latents
from . import conditioning
import torch
extra_samplers.add_samplers()
#torch.set_default_dtype(torch.float64)
NODE_CLASS_MAPPINGS = {
"ConditioningAverageScheduler": conditioning.ConditioningAverageScheduler,
"LatentNoiseList": latents.LatentNoiseList,
#"LatentBatch_channels_offset": latents.LatentBatch_channels_offset,
"LatentBatch_channels": latents.LatentBatch_channels,
"LatentNoiseBatch_fractal": latents.LatentNoiseBatch_fractal,
"LatentNoiseBatch_gaussian": latents.LatentNoiseBatch_gaussian,
"LatentNoiseBatch_gaussian_channels": latents.LatentNoiseBatch_gaussian_channels,
"Latent to Cuda": latents.latent_to_cuda,
"Latent Batcher": latents.latent_batch,
"Set Precision": latents.set_precision,
"LatentNoiseBatch_perlin": latents.LatentNoiseBatch_perlin,
"EmptyLatentImage64": latents.EmptyLatentImage64,
"LatentPhaseMagnitude": latents.LatentPhaseMagnitude,
"LatentPhaseMagnitudeMultiply": latents.LatentPhaseMagnitudeMultiply,
"LatentPhaseMagnitudeOffset": latents.LatentPhaseMagnitudeOffset,
"LatentPhaseMagnitudePower": latents.LatentPhaseMagnitudePower,
"ClownSampler": samplers.ClownSampler,
"SharkSampler": samplers.SharkSampler,
"SamplerDPMPP_DualSDE_Advanced": samplers.SamplerDPMPP_DUALSDE_MOMENTUMIZED_ADVANCED,
"SamplerDPMPP_SDE_Advanced": samplers.SamplerDPMPP_SDE_ADVANCED,
"Sigmas Truncate": sigmas.sigmas_truncate,
"Sigmas Start": sigmas.sigmas_start,
"Sigmas Split": sigmas.sigmas_split,
"Sigmas Concat": sigmas.sigmas_concatenate,
"Sigmas Pad": sigmas.sigmas_pad,
"Sigmas Unpad": sigmas.sigmas_unpad,
"Sigmas SetFloor": sigmas.sigmas_set_floor,
"Sigmas DeleteBelowFloor": sigmas.sigmas_delete_below_floor,
"Sigmas DeleteDuplicates": sigmas.sigmas_delete_consecutive_duplicates,
"Sigmas Cleanup": sigmas.sigmas_cleanup,
"Sigmas Mult": sigmas.sigmas_mult,
"Sigmas Modulus": sigmas.sigmas_modulus,
"Sigmas Quotient": sigmas.sigmas_quotient,
"Sigmas Add": sigmas.sigmas_add,
"Sigmas Power": sigmas.sigmas_power,
"Sigmas Abs": sigmas.sigmas_abs,
"Sigmas2 Mult": sigmas.sigmas2_mult,
"Sigmas2 Add": sigmas.sigmas2_add,
"Sigmas Math1": sigmas.sigmas_math1,
"Sigmas Math3": sigmas.sigmas_math3,
"Sigmas Iteration Karras": sigmas.sigmas_iteration_karras,
"Sigmas Iteration Polyexp": sigmas.sigmas_iteration_polyexp,
"Tan Scheduler": sigmas.tan_scheduler,
"Tan Scheduler 2": sigmas.tan_scheduler_2stage,
"Tan Scheduler 2 Simple": sigmas.tan_scheduler_2stage_simple,
}
__all__ = ['NODE_CLASS_MAPPINGS']