aboutsummaryrefslogtreecommitdiff
path: root/modules/hypernetworks
diff options
context:
space:
mode:
authorAUTOMATIC <16777216c@gmail.com>2022-10-20 08:18:02 +0300
committerAUTOMATIC <16777216c@gmail.com>2022-10-20 08:18:02 +0300
commit930b4c64f7dbce6918894d53538003e5959fd022 (patch)
treea0a0a42838d72ad412cc330b9181b2ec8c1f77fd /modules/hypernetworks
parent1e4809b251d478a102fd980dcfc26e21d6d3730b (diff)
allow float sizes for hypernet's layer_structure
Diffstat (limited to 'modules/hypernetworks')
-rw-r--r--modules/hypernetworks/ui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/hypernetworks/ui.py b/modules/hypernetworks/ui.py
index 08f75f15..e0741d08 100644
--- a/modules/hypernetworks/ui.py
+++ b/modules/hypernetworks/ui.py
@@ -15,7 +15,7 @@ def create_hypernetwork(name, enable_sizes, layer_structure=None, add_layer_norm
assert not os.path.exists(fn), f"file {fn} already exists"
if type(layer_structure) == str:
- layer_structure = tuple(map(int, re.sub(r'\D', '', layer_structure)))
+ layer_structure = [float(x.strip()) for x in layer_structure.split(",")]
hypernet = modules.hypernetworks.hypernetwork.Hypernetwork(
name=name,