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
7dba1c07
Commit
7dba1c07
authored
Oct 09, 2022
by
Milly
Committed by
AUTOMATIC1111
Oct 12, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
xy_grid: Confirm that hypernetwork options are valid before starting
parent
2d006ce1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
xy_grid.py
scripts/xy_grid.py
+12
-0
No files found.
scripts/xy_grid.py
View file @
7dba1c07
...
...
@@ -88,9 +88,19 @@ def apply_hypernetwork(p, x, xs):
name
=
None
else
:
name
=
hypernetwork
.
find_closest_hypernetwork_name
(
x
)
if
not
name
:
raise
RuntimeError
(
f
"Unknown hypernetwork: {x}"
)
hypernetwork
.
load_hypernetwork
(
name
)
def
confirm_hypernetworks
(
xs
):
for
x
in
xs
:
if
x
.
lower
()
in
[
""
,
"none"
]:
continue
if
not
hypernetwork
.
find_closest_hypernetwork_name
(
x
):
raise
RuntimeError
(
f
"Unknown hypernetwork: {x}"
)
def
apply_clip_skip
(
p
,
x
,
xs
):
opts
.
data
[
"CLIP_stop_at_last_layers"
]
=
x
...
...
@@ -284,6 +294,8 @@ class Script(scripts.Script):
for
ckpt_val
in
valslist
:
if
modules
.
sd_models
.
get_closet_checkpoint_match
(
ckpt_val
)
is
None
:
raise
RuntimeError
(
f
"Checkpoint for {ckpt_val} not found"
)
elif
opt
.
label
==
"Hypernetwork"
:
confirm_hypernetworks
(
valslist
)
return
valslist
...
...
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