Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -46,7 +46,7 @@ def predict_sum(model, x1, x2):
|
|
| 46 |
def main():
|
| 47 |
st.title("Sum Predictor using Neural Network (Using version M3)")
|
| 48 |
|
| 49 |
-
model_path = "
|
| 50 |
if os.path.exists(model_path):
|
| 51 |
model = load_model(model_path)
|
| 52 |
st.success("Model loaded successfully.")
|
|
|
|
| 46 |
def main():
|
| 47 |
st.title("Sum Predictor using Neural Network (Using version M3)")
|
| 48 |
|
| 49 |
+
model_path = "MA3T.pth" # Update with your model path if necessary
|
| 50 |
if os.path.exists(model_path):
|
| 51 |
model = load_model(model_path)
|
| 52 |
st.success("Model loaded successfully.")
|