Shalini94 commited on
Commit
dfa1e7c
·
verified ·
1 Parent(s): f8ed1bd

Upload folder using huggingface_hub

Browse files
Files changed (3) hide show
  1. Dockerfile +9 -13
  2. app.py +75 -0
  3. requirements.txt +3 -3
Dockerfile CHANGED
@@ -1,20 +1,16 @@
1
- FROM python:3.13.5-slim
 
2
 
 
3
  WORKDIR /app
4
 
5
- RUN apt-get update && apt-get install -y \
6
- build-essential \
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
- EXPOSE 8501
17
-
18
- HEALTHCHECK CMD curl --fail http://localhost:8501/_stcore/health
19
 
20
- ENTRYPOINT ["streamlit", "run", "src/streamlit_app.py", "--server.port=8501", "--server.address=0.0.0.0"]
 
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,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ import pandas as pd
3
+ import requests
4
+
5
+ # Set the title of the Streamlit app
6
+ st.title("Superkart Product Sales Prediction")
7
+
8
+ # Section for online prediction
9
+ st.subheader("Online Prediction")
10
+
11
+ # Collect user input for product-store features
12
+ product_id = st.text_input("Product ID (e.g., AB123)")
13
+ product_weight = st.number_input("Product Weight (in grams)", min_value=0.0, value=500.0)
14
+ product_sugar_content = st.selectbox("Product Sugar Content", ["Low Sugar", "Regular", "No Sugar"])
15
+ product_allocated_area = st.number_input("Allocated Display Area Ratio", min_value=0.0, max_value=1.0, value=0.1)
16
+ product_type = st.selectbox("Product Type", [
17
+ "Meat", "Snack Foods", "Hard Drinks", "Dairy", "Canned", "Soft Drinks",
18
+ "Health and Hygiene", "Baking Goods", "Bread", "Breakfast",
19
+ "Frozen Foods", "Fruits and Vegetables", "Household", "Seafood",
20
+ "Starchy Foods", "Others"
21
+ ])
22
+ product_mrp = st.number_input("Maximum Retail Price (MRP)", min_value=0.0, value=100.0)
23
+ store_id = st.text_input("Store ID (e.g., ST01)")
24
+ store_establishment_year = st.number_input("Store Establishment Year", min_value=1900, max_value=2025, value=2000)
25
+ store_size = st.selectbox("Store Size", ["High", "Medium", "Low"])
26
+ store_location_city_type = st.selectbox("Store Location City Type", ["Tier 1", "Tier 2", "Tier 3"])
27
+ store_type = st.selectbox("Store Type", ["Departmental Store", "Supermarket Type 1", "Supermarket Type 2", "Food Mart"])
28
+
29
+ # Convert user input into a DataFrame
30
+ input_data = pd.DataFrame([{
31
+ 'Product_Id': product_id,
32
+ 'Product_Weight': product_weight,
33
+ 'Product_Sugar_Content': product_sugar_content,
34
+ 'Product_Allocated_Area': product_allocated_area,
35
+ 'Product_Type': product_type,
36
+ 'Product_MRP': product_mrp,
37
+ 'Store_Id': store_id,
38
+ 'Store_Establishment_Year': store_establishment_year,
39
+ 'Store_Size': store_size,
40
+ 'Store_Location_City_Type': store_location_city_type,
41
+ 'Store_Type': store_type
42
+ }])
43
+
44
+
45
+ # Make prediction when the "Predict" button is clicked
46
+ if st.button("Predict"):
47
+ response = requests.post(
48
+ "https://<username>-<repo_id>.hf.space/v1/sales", # Replace with your Hugging Face Space API URL
49
+ json=input_data.to_dict(orient='records')[0]
50
+ )
51
+ if response.status_code == 200:
52
+ prediction = response.json()['Predicted_Product_Store_Sales_Total']
53
+ st.success(f"Predicted Product Sales Total: ${prediction}")
54
+ else:
55
+ st.error("Error making prediction.")
56
+
57
+ # Section for batch prediction
58
+ st.subheader("Batch Prediction")
59
+
60
+ # Allow users to upload a CSV file for batch prediction
61
+ uploaded_file = st.file_uploader("Upload CSV file for batch prediction", type=["csv"])
62
+
63
+ # Make batch prediction when the "Predict Batch" button is clicked
64
+ if uploaded_file is not None:
65
+ if st.button("Predict Batch"):
66
+ response = requests.post(
67
+ "https://<username>-<repo_id>.hf.space/v1/salesbatch", # Replace with your Hugging Face Space API URL
68
+ files={"file": uploaded_file}
69
+ )
70
+ if response.status_code == 200:
71
+ predictions = response.json()
72
+ st.success("Batch predictions completed!")
73
+ st.write(predictions) # Display the predictions
74
+ else:
75
+ st.error("Error making batch prediction.")
requirements.txt CHANGED
@@ -1,3 +1,3 @@
1
- altair
2
- pandas
3
- streamlit
 
1
+ pandas==2.2.2
2
+ requests==2.28.1
3
+ streamlit==1.43.2