Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
chenpangpang
ComfyUI
Commits
8509bd58
Commit
8509bd58
authored
Nov 13, 2023
by
comfyanonymous
Browse files
Reorganize custom_sampling nodes.
parent
61112c81
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
comfy_extras/nodes_custom_sampler.py
comfy_extras/nodes_custom_sampler.py
+10
-10
No files found.
comfy_extras/nodes_custom_sampler.py
View file @
8509bd58
...
...
@@ -16,7 +16,7 @@ class BasicScheduler:
}
}
RETURN_TYPES
=
(
"SIGMAS"
,)
CATEGORY
=
"sampling/custom_sampling"
CATEGORY
=
"sampling/custom_sampling
/schedulers
"
FUNCTION
=
"get_sigmas"
...
...
@@ -36,7 +36,7 @@ class KarrasScheduler:
}
}
RETURN_TYPES
=
(
"SIGMAS"
,)
CATEGORY
=
"sampling/custom_sampling"
CATEGORY
=
"sampling/custom_sampling
/schedulers
"
FUNCTION
=
"get_sigmas"
...
...
@@ -54,7 +54,7 @@ class ExponentialScheduler:
}
}
RETURN_TYPES
=
(
"SIGMAS"
,)
CATEGORY
=
"sampling/custom_sampling"
CATEGORY
=
"sampling/custom_sampling
/schedulers
"
FUNCTION
=
"get_sigmas"
...
...
@@ -73,7 +73,7 @@ class PolyexponentialScheduler:
}
}
RETURN_TYPES
=
(
"SIGMAS"
,)
CATEGORY
=
"sampling/custom_sampling"
CATEGORY
=
"sampling/custom_sampling
/schedulers
"
FUNCTION
=
"get_sigmas"
...
...
@@ -92,7 +92,7 @@ class VPScheduler:
}
}
RETURN_TYPES
=
(
"SIGMAS"
,)
CATEGORY
=
"sampling/custom_sampling"
CATEGORY
=
"sampling/custom_sampling
/schedulers
"
FUNCTION
=
"get_sigmas"
...
...
@@ -109,7 +109,7 @@ class SplitSigmas:
}
}
RETURN_TYPES
=
(
"SIGMAS"
,
"SIGMAS"
)
CATEGORY
=
"sampling/custom_sampling"
CATEGORY
=
"sampling/custom_sampling
/sigmas
"
FUNCTION
=
"get_sigmas"
...
...
@@ -144,7 +144,7 @@ class KSamplerSelect:
}
}
RETURN_TYPES
=
(
"SAMPLER"
,)
CATEGORY
=
"sampling/custom_sampling"
CATEGORY
=
"sampling/custom_sampling
/samplers
"
FUNCTION
=
"get_sampler"
...
...
@@ -163,7 +163,7 @@ class SamplerDPMPP_2M_SDE:
}
}
RETURN_TYPES
=
(
"SAMPLER"
,)
CATEGORY
=
"sampling/custom_sampling"
CATEGORY
=
"sampling/custom_sampling
/samplers
"
FUNCTION
=
"get_sampler"
...
...
@@ -187,7 +187,7 @@ class SamplerDPMPP_SDE:
}
}
RETURN_TYPES
=
(
"SAMPLER"
,)
CATEGORY
=
"sampling/custom_sampling"
CATEGORY
=
"sampling/custom_sampling
/samplers
"
FUNCTION
=
"get_sampler"
...
...
@@ -252,6 +252,7 @@ class SamplerCustom:
NODE_CLASS_MAPPINGS
=
{
"SamplerCustom"
:
SamplerCustom
,
"BasicScheduler"
:
BasicScheduler
,
"KarrasScheduler"
:
KarrasScheduler
,
"ExponentialScheduler"
:
ExponentialScheduler
,
"PolyexponentialScheduler"
:
PolyexponentialScheduler
,
...
...
@@ -259,7 +260,6 @@ NODE_CLASS_MAPPINGS = {
"KSamplerSelect"
:
KSamplerSelect
,
"SamplerDPMPP_2M_SDE"
:
SamplerDPMPP_2M_SDE
,
"SamplerDPMPP_SDE"
:
SamplerDPMPP_SDE
,
"BasicScheduler"
:
BasicScheduler
,
"SplitSigmas"
:
SplitSigmas
,
"FlipSigmas"
:
FlipSigmas
,
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment