nqtruong commited on
Commit
e5ecc25
·
verified ·
1 Parent(s): 22893bb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -35,7 +35,8 @@ class SiameseModel(nn.Module):
35
  return x
36
 
37
  model = SiameseModel()
38
- model.load_state_dict(torch.load('model_best_weights_1000.pt', map_location=torch.device('cpu')))
 
39
  model.eval()
40
 
41
 
 
35
  return x
36
 
37
  model = SiameseModel()
38
+ model.load_state_dict(torch.load('model.pt', map_location=torch.device('cpu')))
39
+ print("____________LOADED___________________")
40
  model.eval()
41
 
42