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
7870937c
Commit
7870937c
authored
Jul 17, 2023
by
w-e-w
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
XYZ always_discard_next_to_last_sigma
Co-authored-by:
Franck Mahon
<
franck.mahon@gmail.com
>
parent
7d26c479
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletion
+9
-1
scripts/xyz_grid.py
scripts/xyz_grid.py
+9
-1
No files found.
scripts/xyz_grid.py
View file @
7870937c
...
@@ -144,11 +144,18 @@ def apply_face_restore(p, opt, x):
...
@@ -144,11 +144,18 @@ def apply_face_restore(p, opt, x):
p
.
restore_faces
=
is_active
p
.
restore_faces
=
is_active
def
apply_override
(
field
):
def
apply_override
(
field
,
boolean
:
bool
=
False
):
def
fun
(
p
,
x
,
xs
):
def
fun
(
p
,
x
,
xs
):
if
boolean
:
x
=
True
if
x
==
"True"
else
False
p
.
override_settings
[
field
]
=
x
p
.
override_settings
[
field
]
=
x
return
fun
return
fun
def
boolean_choice
():
return
[
"True"
,
"False"
]
def
format_value_add_label
(
p
,
opt
,
x
):
def
format_value_add_label
(
p
,
opt
,
x
):
if
type
(
x
)
==
float
:
if
type
(
x
)
==
float
:
x
=
round
(
x
,
8
)
x
=
round
(
x
,
8
)
...
@@ -235,6 +242,7 @@ axis_options = [
...
@@ -235,6 +242,7 @@ axis_options = [
AxisOption
(
"Face restore"
,
str
,
apply_face_restore
,
format_value
=
format_value
),
AxisOption
(
"Face restore"
,
str
,
apply_face_restore
,
format_value
=
format_value
),
AxisOption
(
"Token merging ratio"
,
float
,
apply_override
(
'token_merging_ratio'
)),
AxisOption
(
"Token merging ratio"
,
float
,
apply_override
(
'token_merging_ratio'
)),
AxisOption
(
"Token merging ratio high-res"
,
float
,
apply_override
(
'token_merging_ratio_hr'
)),
AxisOption
(
"Token merging ratio high-res"
,
float
,
apply_override
(
'token_merging_ratio_hr'
)),
AxisOption
(
"Always discard next-to-last sigma"
,
str
,
apply_override
(
'always_discard_next_to_last_sigma'
,
boolean
=
True
),
choices
=
boolean_choice
),
]
]
...
...
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