Upload folder using huggingface_hub
Browse files
app.py
CHANGED
|
@@ -49,4 +49,4 @@ input_data = pd.DataFrame([{
|
|
| 49 |
# Predict button
|
| 50 |
if st.button("Predict"):
|
| 51 |
prediction = model.predict(input_data)
|
| 52 |
-
st.write(f"The predicted total sales of the store is {prediction}")
|
|
|
|
| 49 |
# Predict button
|
| 50 |
if st.button("Predict"):
|
| 51 |
prediction = model.predict(input_data)
|
| 52 |
+
st.write(f"The predicted total sales of the store is: {prediction}")
|