Spaces:
Sleeping
Sleeping
fixed path of keras file in streamlit app
Browse files
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'
|
| 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 |
|