Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
S
stable-diffusion-webui
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
stable-diffusion-webui
Commits
d860b56c
Unverified
Commit
d860b56c
authored
Nov 27, 2022
by
AUTOMATIC1111
Committed by
GitHub
Nov 27, 2022
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #4961 from uservar/DPM++SDE
Add DPM++ SDE sampler
parents
b48b7999
6df49457
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
sd_samplers.py
modules/sd_samplers.py
+2
-0
No files found.
modules/sd_samplers.py
View file @
d860b56c
...
@@ -26,6 +26,7 @@ samplers_k_diffusion = [
...
@@ -26,6 +26,7 @@ samplers_k_diffusion = [
(
'DPM2 a'
,
'sample_dpm_2_ancestral'
,
[
'k_dpm_2_a'
],
{}),
(
'DPM2 a'
,
'sample_dpm_2_ancestral'
,
[
'k_dpm_2_a'
],
{}),
(
'DPM++ 2S a'
,
'sample_dpmpp_2s_ancestral'
,
[
'k_dpmpp_2s_a'
],
{}),
(
'DPM++ 2S a'
,
'sample_dpmpp_2s_ancestral'
,
[
'k_dpmpp_2s_a'
],
{}),
(
'DPM++ 2M'
,
'sample_dpmpp_2m'
,
[
'k_dpmpp_2m'
],
{}),
(
'DPM++ 2M'
,
'sample_dpmpp_2m'
,
[
'k_dpmpp_2m'
],
{}),
(
'DPM++ SDE'
,
'sample_dpmpp_sde'
,
[
'k_dpmpp_sde'
],
{}),
(
'DPM fast'
,
'sample_dpm_fast'
,
[
'k_dpm_fast'
],
{}),
(
'DPM fast'
,
'sample_dpm_fast'
,
[
'k_dpm_fast'
],
{}),
(
'DPM adaptive'
,
'sample_dpm_adaptive'
,
[
'k_dpm_ad'
],
{}),
(
'DPM adaptive'
,
'sample_dpm_adaptive'
,
[
'k_dpm_ad'
],
{}),
(
'LMS Karras'
,
'sample_lms'
,
[
'k_lms_ka'
],
{
'scheduler'
:
'karras'
}),
(
'LMS Karras'
,
'sample_lms'
,
[
'k_lms_ka'
],
{
'scheduler'
:
'karras'
}),
...
@@ -33,6 +34,7 @@ samplers_k_diffusion = [
...
@@ -33,6 +34,7 @@ samplers_k_diffusion = [
(
'DPM2 a Karras'
,
'sample_dpm_2_ancestral'
,
[
'k_dpm_2_a_ka'
],
{
'scheduler'
:
'karras'
}),
(
'DPM2 a Karras'
,
'sample_dpm_2_ancestral'
,
[
'k_dpm_2_a_ka'
],
{
'scheduler'
:
'karras'
}),
(
'DPM++ 2S a Karras'
,
'sample_dpmpp_2s_ancestral'
,
[
'k_dpmpp_2s_a_ka'
],
{
'scheduler'
:
'karras'
}),
(
'DPM++ 2S a Karras'
,
'sample_dpmpp_2s_ancestral'
,
[
'k_dpmpp_2s_a_ka'
],
{
'scheduler'
:
'karras'
}),
(
'DPM++ 2M Karras'
,
'sample_dpmpp_2m'
,
[
'k_dpmpp_2m_ka'
],
{
'scheduler'
:
'karras'
}),
(
'DPM++ 2M Karras'
,
'sample_dpmpp_2m'
,
[
'k_dpmpp_2m_ka'
],
{
'scheduler'
:
'karras'
}),
(
'DPM++ SDE Karras'
,
'sample_dpmpp_sde'
,
[
'k_dpmpp_sde_ka'
],
{
'scheduler'
:
'karras'
}),
]
]
samplers_data_k_diffusion
=
[
samplers_data_k_diffusion
=
[
...
...
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