Update TractionModel.py
Browse files- 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
|