Spaces:
Sleeping
Sleeping
Upload folder using huggingface_hub
Browse files
app.py
CHANGED
|
@@ -48,4 +48,4 @@ input_data = pd.DataFrame([{
|
|
| 48 |
if st.button("Predict"):
|
| 49 |
# Make prediction when the "predict" button is clicked
|
| 50 |
prediction = model.predict(input_data)
|
| 51 |
-
st.write(f"Predicted product sales total
|
|
|
|
| 48 |
if st.button("Predict"):
|
| 49 |
# Make prediction when the "predict" button is clicked
|
| 50 |
prediction = model.predict(input_data)
|
| 51 |
+
st.write(f"Predicted product store sales total (in dollars): {prediction[0]}")
|