Upload folder using huggingface_hub
Browse files
app.py
CHANGED
|
@@ -77,6 +77,6 @@ uploaded_file = st.file_uploader("Upload CSV file for batch prediction", type=["
|
|
| 77 |
if uploaded_file is not None:
|
| 78 |
if st.button("Predict Batch"):
|
| 79 |
response = predict_store_sales_batch(uploaded_file)
|
| 80 |
-
predictions = response
|
| 81 |
st.success("Batch predictions completed!")
|
| 82 |
st.write(predictions) # Display the predictions
|
|
|
|
| 77 |
if uploaded_file is not None:
|
| 78 |
if st.button("Predict Batch"):
|
| 79 |
response = predict_store_sales_batch(uploaded_file)
|
| 80 |
+
predictions = response
|
| 81 |
st.success("Batch predictions completed!")
|
| 82 |
st.write(predictions) # Display the predictions
|