Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -61,7 +61,7 @@ def app_design():
|
|
| 61 |
model = load_model()
|
| 62 |
|
| 63 |
# Make a prediction when the user clicks the "Predict" button
|
| 64 |
-
if st.button('Predict
|
| 65 |
predicted_value = model_prediction(model, features)
|
| 66 |
|
| 67 |
st.success(f"The Sales are: {predicted_value}")
|
|
|
|
| 61 |
model = load_model()
|
| 62 |
|
| 63 |
# Make a prediction when the user clicks the "Predict" button
|
| 64 |
+
if st.button('Predict Sales'):
|
| 65 |
predicted_value = model_prediction(model, features)
|
| 66 |
|
| 67 |
st.success(f"The Sales are: {predicted_value}")
|