muellerzr commited on
Commit
0c3d87d
·
1 Parent(s): f4e2ec1

Right location

Browse files
Files changed (1) hide show
  1. src/app.py +1 -1
src/app.py CHANGED
@@ -25,7 +25,7 @@ vocab = [
25
 
26
 
27
  model = get_model()
28
- state = torch.load('../exported_model.pth')["model"]
29
  apply_weights(model, state, copy_weight)
30
  model.cuda()
31
 
 
25
 
26
 
27
  model = get_model()
28
+ state = torch.load('exported_model.pth')["model"]
29
  apply_weights(model, state, copy_weight)
30
  model.cuda()
31