We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b8a192 commit 20194fdCopy full SHA for 20194fd
modules/hypernetworks/ui.py
@@ -9,7 +9,7 @@
9
from modules.hypernetworks import hypernetwork
10
11
not_available = ["hardswish", "multiheadattention"]
12
-keys = ["linear"] + list(x for x in hypernetwork.HypernetworkModule.activation_dict.keys() if x not in not_available)
+keys = list(x for x in hypernetwork.HypernetworkModule.activation_dict.keys() if x not in not_available)
13
14
def create_hypernetwork(name, enable_sizes, overwrite_old, layer_structure=None, activation_func=None, weight_init=None, add_layer_norm=False, use_dropout=False):
15
# Remove illegal characters from name.
0 commit comments