AlexN commited on
Commit
af94e9a
·
1 Parent(s): bb3f596

Update TractionModel.py

Browse files
Files changed (1) hide show
  1. app/TractionModel.py +1 -1
app/TractionModel.py CHANGED
@@ -54,6 +54,6 @@ def create_model():
54
 
55
 
56
  def load_weights(model, path='model.pt'):
57
- checkpoint = torch.load(path)
58
  model.load_state_dict(checkpoint)
59
  return model
 
54
 
55
 
56
  def load_weights(model, path='model.pt'):
57
+ checkpoint = torch.load(path, map_location=torch.device('cpu'))
58
  model.load_state_dict(checkpoint)
59
  return model