Skip to content

Commit

Permalink
Improve the safety of torch.load with weights_only=True
Browse files Browse the repository at this point in the history
  • Loading branch information
hankcs committed Oct 8, 2024
1 parent 32428a2 commit fae9fe9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hanlp/common/torch_component.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def load_weights(self, save_dir, filename='model.pt', **kwargs):
save_dir = get_resource(save_dir)
filename = os.path.join(save_dir, filename)
# flash(f'Loading model: {filename} [blink]...[/blink][/yellow]')
self.model_.load_state_dict(torch.load(filename, map_location='cpu'), strict=False)
self.model_.load_state_dict(torch.load(filename, map_location='cpu', weights_only=True), strict=False)
# flash('')

def save_config(self, save_dir, filename='config.json'):
Expand Down

0 comments on commit fae9fe9

Please sign in to comment.