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
1e696b02
Commit
1e696b02
authored
May 19, 2024
by
w-e-w
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
use override of sd_vae
parent
1f392517
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
15 deletions
+9
-15
scripts/xyz_grid.py
scripts/xyz_grid.py
+9
-15
No files found.
scripts/xyz_grid.py
View file @
1e696b02
...
...
@@ -118,21 +118,16 @@ def apply_size(p, x: str, xs) -> None:
def
find_vae
(
name
:
str
):
if
name
.
lower
()
in
[
'auto'
,
'automatic'
]:
return
modules
.
sd_vae
.
unspecified
if
name
.
lower
()
==
'none'
:
return
None
else
:
choices
=
[
x
for
x
in
sorted
(
modules
.
sd_vae
.
vae_dict
,
key
=
lambda
x
:
len
(
x
))
if
name
.
lower
()
.
strip
()
in
x
.
lower
()]
if
len
(
choices
)
==
0
:
print
(
f
"No VAE found for {name}; using automatic"
)
return
modules
.
sd_vae
.
unspecified
else
:
return
modules
.
sd_vae
.
vae_dict
[
choices
[
0
]]
match
name
:
=
name
.
lower
()
.
strip
():
case
'auto'
,
'automatic'
:
return
'Automatic'
case
'none'
:
return
'None'
return
next
((
k
for
k
in
modules
.
sd_vae
.
vae_dict
if
k
.
lower
()
==
name
),
print
(
f
'No VAE found for {name}; using Automatic'
)
or
'Automatic'
)
def
apply_vae
(
p
,
x
,
xs
):
modules
.
sd_vae
.
reload_vae_weights
(
shared
.
sd_model
,
vae_file
=
find_vae
(
x
)
)
p
.
override_settings
[
'sd_vae'
]
=
find_vae
(
x
)
def
apply_styles
(
p
:
StableDiffusionProcessingTxt2Img
,
x
:
str
,
_
):
...
...
@@ -270,7 +265,7 @@ axis_options = [
AxisOption
(
"Extra noise"
,
float
,
apply_override
(
"img2img_extra_noise"
)),
AxisOptionTxt2Img
(
"Hires upscaler"
,
str
,
apply_field
(
"hr_upscaler"
),
choices
=
lambda
:
[
*
shared
.
latent_upscale_modes
,
*
[
x
.
name
for
x
in
shared
.
sd_upscalers
]]),
AxisOptionImg2Img
(
"Cond. Image Mask Weight"
,
float
,
apply_field
(
"inpainting_mask_weight"
)),
AxisOption
(
"VAE"
,
str
,
apply_vae
,
cost
=
0.7
,
choices
=
lambda
:
[
'None'
]
+
list
(
sd_vae
.
vae_dict
)),
AxisOption
(
"VAE"
,
str
,
apply_vae
,
cost
=
0.7
,
choices
=
lambda
:
[
'
Automatic'
,
'
None'
]
+
list
(
sd_vae
.
vae_dict
)),
AxisOption
(
"Styles"
,
str
,
apply_styles
,
choices
=
lambda
:
list
(
shared
.
prompt_styles
.
styles
)),
AxisOption
(
"UniPC Order"
,
int
,
apply_uni_pc_order
,
cost
=
0.5
),
AxisOption
(
"Face restore"
,
str
,
apply_face_restore
,
format_value
=
format_value
),
...
...
@@ -399,10 +394,9 @@ def draw_xyz_grid(p, xs, ys, zs, x_labels, y_labels, z_labels, cell, draw_legend
class
SharedSettingsStackHelper
(
object
):
def
__enter__
(
self
):
self
.
vae
=
opts
.
sd_vae
pass
def
__exit__
(
self
,
exc_type
,
exc_value
,
tb
):
opts
.
data
[
"sd_vae"
]
=
self
.
vae
modules
.
sd_models
.
reload_model_weights
()
modules
.
sd_vae
.
reload_vae_weights
()
...
...
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