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 649d79a commit 91bb35bCopy full SHA for 91bb35b
modules/hypernetworks/hypernetwork.py
@@ -190,7 +190,7 @@ def load(self, filename):
190
print(f"Weight initialization is {self.weight_init}")
191
self.add_layer_norm = state_dict.get('is_layer_norm', False)
192
print(f"Layer norm is set to {self.add_layer_norm}")
193
- self.use_dropout = state_dict.get('use_dropout', False
+ self.use_dropout = state_dict.get('use_dropout', False)
194
print(f"Dropout usage is set to {self.use_dropout}" )
195
self.activate_output = state_dict.get('activate_output', True)
196
0 commit comments