Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
S
Stable Diffusion Webui
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
novelai-storage
Stable Diffusion Webui
Commits
302d95c7
Commit
302d95c7
authored
May 22, 2023
by
Kohaku-Blueleaf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor naming fixes
parent
4365c35b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
modules/processing.py
modules/processing.py
+5
-5
modules/ui.py
modules/ui.py
+2
-2
No files found.
modules/processing.py
View file @
302d95c7
...
...
@@ -567,11 +567,11 @@ def create_infotext(p, all_prompts, all_seeds, all_subseeds, comments=None, iter
generation_params
=
{
"Steps"
:
p
.
steps
,
"Sampler"
:
p
.
sampler_name
,
"Enable Custom K
arras
Schedule"
:
use_custom_k_sched
or
None
,
"
kd
iffusion Scheduler Type"
:
p
.
k_sched_type
if
use_custom_k_sched
else
None
,
"
kd
iffusion Scheduler sigma_max"
:
p
.
sigma_max
if
use_custom_k_sched
else
None
,
"
kd
iffusion Scheduler sigma_min"
:
p
.
sigma_min
if
use_custom_k_sched
else
None
,
"
kd
iffusion Scheduler rho"
:
p
.
rho
if
use_custom_k_sched
else
None
,
"Enable Custom K
Diffusion
Schedule"
:
use_custom_k_sched
or
None
,
"
KD
iffusion Scheduler Type"
:
p
.
k_sched_type
if
use_custom_k_sched
else
None
,
"
KD
iffusion Scheduler sigma_max"
:
p
.
sigma_max
if
use_custom_k_sched
else
None
,
"
KD
iffusion Scheduler sigma_min"
:
p
.
sigma_min
if
use_custom_k_sched
else
None
,
"
KD
iffusion Scheduler rho"
:
p
.
rho
if
use_custom_k_sched
else
None
,
"CFG scale"
:
p
.
cfg_scale
,
"Image CFG scale"
:
getattr
(
p
,
'image_cfg_scale'
,
None
),
"Seed"
:
all_seeds
[
index
],
...
...
modules/ui.py
View file @
302d95c7
...
...
@@ -676,7 +676,7 @@ def create_ui():
(
hr_prompt
,
"Hires prompt"
),
(
hr_negative_prompt
,
"Hires negative prompt"
),
(
hr_prompts_container
,
lambda
d
:
gr
.
update
(
visible
=
True
)
if
d
.
get
(
"Hires prompt"
,
""
)
!=
""
or
d
.
get
(
"Hires negative prompt"
,
""
)
!=
""
else
gr
.
update
()),
(
t2i_enable_k_sched
,
"Enable Custom K
arras
Schedule"
),
(
t2i_enable_k_sched
,
"Enable Custom K
Diffusion
Schedule"
),
(
t2i_k_sched_type
,
"KDiffusion Scheduler Type"
),
(
t2i_k_sched_sigma_max
,
"KDiffusion Scheduler sigma_max"
),
(
t2i_k_sched_sigma_min
,
"KDiffusion Scheduler sigma_min"
),
...
...
@@ -1090,7 +1090,7 @@ def create_ui():
(
steps
,
"Steps"
),
(
sampler_index
,
"Sampler"
),
(
restore_faces
,
"Face restoration"
),
(
i2i_enable_k_sched
,
"Enable Custom K
arras
Schedule"
),
(
i2i_enable_k_sched
,
"Enable Custom K
Diffusion
Schedule"
),
(
i2i_k_sched_type
,
"KDiffusion Scheduler Type"
),
(
i2i_k_sched_sigma_max
,
"KDiffusion Scheduler sigma_max"
),
(
i2i_k_sched_sigma_min
,
"KDiffusion Scheduler sigma_min"
),
...
...
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