sussahoo commited on
Commit
ffe82b4
1 Parent(s): 4a892b0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -119,7 +119,7 @@ norm_type = int(setup_config["norm_type"])
119
  max_norm = int(setup_config["max_norm"])
120
 
121
  model = Net( vocab_size, embedding_dim, norm_type, max_norm, window_size)
122
- model.load_state_dict(torch.load("/content/sample_data/model_lstm.pth"))
123
  model.eval()
124
 
125
 
 
119
  max_norm = int(setup_config["max_norm"])
120
 
121
  model = Net( vocab_size, embedding_dim, norm_type, max_norm, window_size)
122
+ model.load_state_dict(torch.load("model_lstm.pth"))
123
  model.eval()
124
 
125