Spaces:
Sleeping
Sleeping
Upload folder using huggingface_hub
Browse files- Dockerfile +9 -13
- app.py +76 -0
- requirements.txt +3 -3
Dockerfile
CHANGED
|
@@ -1,20 +1,16 @@
|
|
| 1 |
-
|
|
|
|
| 2 |
|
|
|
|
| 3 |
WORKDIR /app
|
| 4 |
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
curl \
|
| 8 |
-
git \
|
| 9 |
-
&& rm -rf /var/lib/apt/lists/*
|
| 10 |
-
|
| 11 |
-
COPY requirements.txt ./
|
| 12 |
-
COPY src/ ./src/
|
| 13 |
|
|
|
|
| 14 |
RUN pip3 install -r requirements.txt
|
| 15 |
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health
|
| 19 |
|
| 20 |
-
|
|
|
|
| 1 |
+
# Use a minimal base image with Python 3.9 installed
|
| 2 |
+
FROM python:3.9-slim
|
| 3 |
|
| 4 |
+
# Set the working directory inside the container to /app
|
| 5 |
WORKDIR /app
|
| 6 |
|
| 7 |
+
# Copy all files from the current directory on the host to the container's /app directory
|
| 8 |
+
COPY . .
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
|
| 10 |
+
# Install Python dependencies listed in requirements.txt
|
| 11 |
RUN pip3 install -r requirements.txt
|
| 12 |
|
| 13 |
+
# Define the command to run the Streamlit app on port 8501 and make it accessible externally
|
| 14 |
+
CMD ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0", "--server.enableXsrfProtection=false"]
|
|
|
|
| 15 |
|
| 16 |
+
# NOTE: Disable XSRF protection for easier external access in order to make batch predictions
|
app.py
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import streamlit as st
|
| 2 |
+
import pandas as pd
|
| 3 |
+
import requests
|
| 4 |
+
|
| 5 |
+
# Title
|
| 6 |
+
st.title("Retail Sales Prediction")
|
| 7 |
+
|
| 8 |
+
# ---------------------------
|
| 9 |
+
# Section: Online Prediction
|
| 10 |
+
# ---------------------------
|
| 11 |
+
st.subheader("Online Prediction")
|
| 12 |
+
|
| 13 |
+
# Collect user input
|
| 14 |
+
Store_Establishment_Year = st.number_input("Store Establishment Year", min_value=1900, max_value=2100, value=2000)
|
| 15 |
+
Product_MRP = st.number_input("Product MRP", min_value=0.0, value=100.0, step=1.0)
|
| 16 |
+
Product_Weight = st.number_input("Product Weight", min_value=0.0, value=10.0, step=0.1)
|
| 17 |
+
Store_Id = st.selectbox("Store ID", ["OUT004", "OUT001", "OUT003", "OUT002"])
|
| 18 |
+
Product_Type = st.selectbox("Product Type", [
|
| 19 |
+
"Fruits and Vegetables", "Snack Foods", "Frozen Foods", "Dairy",
|
| 20 |
+
"Household", "Baking Goods", "Canned", "Health and Hygiene", "Meat",
|
| 21 |
+
"Soft Drinks", "Breads", "Hard Drinks", "Others", "Starchy Foods",
|
| 22 |
+
"Breakfast", "Seafood"
|
| 23 |
+
])
|
| 24 |
+
Product_Sugar_Content = st.selectbox("Product Sugar Content", ["Low Sugar", "Regular", "No Sugar", "reg"])
|
| 25 |
+
Store_Location_City_Type = st.selectbox("Store Location City Type", ["Tier 2", "Tier 1", "Tier 3"])
|
| 26 |
+
Store_Size = st.selectbox("Store Size", ["Medium", "High", "Small"])
|
| 27 |
+
Product_Allocated_Area = st.number_input("Product Allocated Area", min_value=0.0, value=50.0, step=1.0)
|
| 28 |
+
Product_id = st.text_input("Product ID (Unique Code)", "FD6114")
|
| 29 |
+
Store_Type = st.selectbox("Store Type", ["Supermarket Type2", "Supermarket Type1", "Departmental Store", "Food Mart"])
|
| 30 |
+
|
| 31 |
+
# Convert user input into DataFrame
|
| 32 |
+
input_data = pd.DataFrame([{
|
| 33 |
+
'Store_Establishment_Year': Store_Establishment_Year,
|
| 34 |
+
'Product_MRP': Product_MRP,
|
| 35 |
+
'Product_Weight': Product_Weight,
|
| 36 |
+
'Store_Id': Store_Id,
|
| 37 |
+
'Product_Type': Product_Type,
|
| 38 |
+
'Product_Sugar_Content': Product_Sugar_Content,
|
| 39 |
+
'Store_Location_City_Type': Store_Location_City_Type,
|
| 40 |
+
'Store_Size': Store_Size,
|
| 41 |
+
'Product_Allocated_Area': Product_Allocated_Area,
|
| 42 |
+
'Product_id': Product_id,
|
| 43 |
+
'Store_Type': Store_Type
|
| 44 |
+
}])
|
| 45 |
+
|
| 46 |
+
# Call backend for prediction
|
| 47 |
+
if st.button("Predict Sales"):
|
| 48 |
+
response = requests.post(
|
| 49 |
+
"https://Quantum9999-RetailSlesPredictionBackend.hf.space/v1/sales",
|
| 50 |
+
json=input_data.to_dict(orient='records')[0]
|
| 51 |
+
)
|
| 52 |
+
if response.status_code == 200:
|
| 53 |
+
prediction = response.json()['Predicted_Sales']
|
| 54 |
+
st.success(f"Predicted Sales: {prediction}")
|
| 55 |
+
else:
|
| 56 |
+
st.error("Error making prediction.")
|
| 57 |
+
|
| 58 |
+
# ---------------------------
|
| 59 |
+
# Section: Batch Prediction
|
| 60 |
+
# ---------------------------
|
| 61 |
+
st.subheader("Batch Prediction")
|
| 62 |
+
|
| 63 |
+
uploaded_file = st.file_uploader("Upload CSV file for batch prediction", type=["csv"])
|
| 64 |
+
|
| 65 |
+
if uploaded_file is not None:
|
| 66 |
+
if st.button("Predict Batch Sales"):
|
| 67 |
+
response = requests.post(
|
| 68 |
+
"https://Quantum9999-RetailSlesPredictionBackend.hf.space/v1/salesbatch",
|
| 69 |
+
files={"file": uploaded_file}
|
| 70 |
+
)
|
| 71 |
+
if response.status_code == 200:
|
| 72 |
+
predictions = response.json()
|
| 73 |
+
st.success("Batch predictions completed!")
|
| 74 |
+
st.write(predictions)
|
| 75 |
+
else:
|
| 76 |
+
st.error("Error making batch prediction.")
|
requirements.txt
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
streamlit
|
|
|
|
| 1 |
+
pandas==2.2.2
|
| 2 |
+
requests==2.28.1
|
| 3 |
+
streamlit==1.43.2
|