mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2025-08-05 03:32:37 +00:00
xy_grid: Find hypernetwork by closest name
This commit is contained in:
@@ -84,7 +84,11 @@ def apply_checkpoint(p, x, xs):
|
||||
|
||||
|
||||
def apply_hypernetwork(p, x, xs):
|
||||
hypernetwork.load_hypernetwork(x)
|
||||
if x.lower() in ["", "none"]:
|
||||
name = None
|
||||
else:
|
||||
name = hypernetwork.find_closest_hypernetwork_name(x)
|
||||
hypernetwork.load_hypernetwork(name)
|
||||
|
||||
|
||||
def apply_clip_skip(p, x, xs):
|
||||
|
Reference in New Issue
Block a user