Skip to content

Commit 91bb35b

Browse files
authored
Merge fix
1 parent 649d79a commit 91bb35b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/hypernetworks/hypernetwork.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ def load(self, filename):
190190
print(f"Weight initialization is {self.weight_init}")
191191
self.add_layer_norm = state_dict.get('is_layer_norm', False)
192192
print(f"Layer norm is set to {self.add_layer_norm}")
193-
self.use_dropout = state_dict.get('use_dropout', False
193+
self.use_dropout = state_dict.get('use_dropout', False)
194194
print(f"Dropout usage is set to {self.use_dropout}" )
195195
self.activate_output = state_dict.get('activate_output', True)
196196

0 commit comments

Comments
 (0)