aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authortimntorres <timothynarcisotorres@gmail.com>2022-10-21 02:11:12 -0700
committerAUTOMATIC1111 <16777216c@gmail.com>2022-10-21 16:52:24 +0300
commit51e3dc9ccad157d7161b697a246e26c868d46a7c (patch)
treed3dd6679b0dbde70dd9586abc6c50b90498efaa3 /modules
parent3e12b5295c91f18ca1c89526f4276cb2a348400c (diff)
Sanitize hypernet name input.
Diffstat (limited to 'modules')
-rw-r--r--modules/hypernetworks/ui.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/hypernetworks/ui.py b/modules/hypernetworks/ui.py
index 266f04f6..e6f50a1f 100644
--- a/modules/hypernetworks/ui.py
+++ b/modules/hypernetworks/ui.py
@@ -11,6 +11,9 @@ from modules.hypernetworks import hypernetwork
def create_hypernetwork(name, enable_sizes, overwrite_old, layer_structure=None, add_layer_norm=False, activation_func=None):
+ # Remove illegal characters from name.
+ name = "".join( x for x in name if (x.isalnum() or x in "._- "))
+
fn = os.path.join(shared.cmd_opts.hypernetwork_dir, f"{name}.pt")
if not overwrite_old:
assert not os.path.exists(fn), f"file {fn} already exists"