diff options
author | Milly <milly.ca@gmail.com> | 2022-10-09 16:37:09 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2022-10-12 07:40:10 +0000 |
commit | 7dba1c07cb337114507d9c256f9b843162c187d6 (patch) | |
tree | 8d72454ebf2174a706670a9c9641905331c99c3c /scripts/xy_grid.py | |
parent | 2d006ce16cd95d587533656c3ac4991495e96f23 (diff) | |
download | stable-diffusion-webui-gfx803-7dba1c07cb337114507d9c256f9b843162c187d6.tar.gz stable-diffusion-webui-gfx803-7dba1c07cb337114507d9c256f9b843162c187d6.tar.bz2 stable-diffusion-webui-gfx803-7dba1c07cb337114507d9c256f9b843162c187d6.zip |
xy_grid: Confirm that hypernetwork options are valid before starting
Diffstat (limited to 'scripts/xy_grid.py')
-rw-r--r-- | scripts/xy_grid.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/scripts/xy_grid.py b/scripts/xy_grid.py index 6f4217ec..b2239d0a 100644 --- a/scripts/xy_grid.py +++ b/scripts/xy_grid.py @@ -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
|