Skip to content

Commit 20194fd

Browse files
committed
We have duplicate linear now
1 parent 4b8a192 commit 20194fd

File tree

1 file changed

+1
-1
lines changed
  • modules/hypernetworks

1 file changed

+1
-1
lines changed

modules/hypernetworks/ui.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from modules.hypernetworks import hypernetwork
1010

1111
not_available = ["hardswish", "multiheadattention"]
12-
keys = ["linear"] + list(x for x in hypernetwork.HypernetworkModule.activation_dict.keys() if x not in not_available)
12+
keys = list(x for x in hypernetwork.HypernetworkModule.activation_dict.keys() if x not in not_available)
1313

1414
def create_hypernetwork(name, enable_sizes, overwrite_old, layer_structure=None, activation_func=None, weight_init=None, add_layer_norm=False, use_dropout=False):
1515
# Remove illegal characters from name.

0 commit comments

Comments
 (0)