sarvansh commited on
Commit
1ee3c01
·
1 Parent(s): a745881

fixed path of keras file in streamlit app

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -35,7 +35,7 @@ def build_model(lstm_hidden_size=256, num_classes=2, dropout_rate=0.5):
35
  return model
36
 
37
  # Load model
38
- model_path = r'D:\Pro-jects\ESE major project\COMBINED_best_Phase1.keras'
39
  model = build_model()
40
  model.load_weights(model_path)
41
 
 
35
  return model
36
 
37
  # Load model
38
+ model_path = r'COMBINED_best_Phase1.keras'
39
  model = build_model()
40
  model.load_weights(model_path)
41