aiLearnerOnBudget commited on
Commit
bd62bb0
·
verified ·
1 Parent(s): 30a0e33

Upload folder using huggingface_hub

Browse files
Files changed (3) hide show
  1. Dockerfile +9 -13
  2. app.py +67 -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,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 Store Sales Prediction")
7
+
8
+ # Section for online prediction
9
+ st.subheader("Online Prediction")
10
+
11
+ product_id = st.text_input("Product ID", "P0001")
12
+ product_weight = st.number_input("Product Weight", min_value=0.0, max_value=10000.0, value=0.0)
13
+ product_sugar_content = st.selectbox("Product Sugar Content", ['Low Sugar', 'Regular', 'No Sugar'])
14
+ product_allocated_area = st.number_input("Product Allocated Area", min_value=0.0, max_value=10000.0, value=0.0)
15
+ product_type = st.selectbox("Product Type", ['Frozen Foods', 'Dairy', 'Canned', 'Baking Goods',
16
+ 'Health and Hygiene', 'Snack Foods', 'Meat', 'Household',
17
+ 'Hard Drinks', 'Fruits and Vegetables', 'Breads', 'Soft Drinks',
18
+ 'Breakfast', 'Others', 'Starchy Foods', 'Seafood'])
19
+ product_mrp = st.number_input("Product MRP", min_value=0.0, max_value=10000.0, value=100.0)
20
+
21
+ store_id = st.text_input("Store ID", "S0001")
22
+ store_establishment_year = st.number_input("Store Establishment Year", min_value=1900, max_value=2025, value=2005, step=1)
23
+ store_size = st.selectbox("Store Size", ['Medium', 'High', 'Small'])
24
+ store_location_city_type = st.selectbox("Store Location City Type", ['Tier 2', 'Tier 1', 'Tier 3'])
25
+ store_type = st.selectbox("Store Type", ['Supermarket Type2', 'Departmental Store', 'Supermarket Type1', 'Food Mart'])
26
+
27
+
28
+ # Convert user input into a DataFrame
29
+ input_data = pd.DataFrame([{
30
+ 'Product_Id': product_id,
31
+ 'Product_Weight': product_weight,
32
+ 'Product_Sugar_Content': product_sugar_content,
33
+ 'Product_Allocated_Area': product_allocated_area,
34
+ 'Product_Type': product_type,
35
+ 'Product_MRP': product_mrp,
36
+ 'Store_Id': store_id,
37
+ 'Store_Establishment_Year': store_establishment_year,
38
+ 'Store_Size': store_size,
39
+ 'Store_Location_City_Type': store_location_city_type,
40
+ 'Store_Type': store_type
41
+ }])
42
+
43
+ # Make prediction when the "Predict" button is clicked
44
+ if st.button("Predict"):
45
+ response = requests.post("https://aiLearnerOnBudget-SuperKartFrontend.hf.space/v1/sales", json=input_data.to_dict(orient='records')[0]) # Send data to Flask API
46
+ if response.status_code == 200:
47
+ prediction = response.json()['Predicted Product Store Sales']
48
+ st.success(f"Predicted Product Store Sales : {prediction}")
49
+ else:
50
+ st.error("Error making prediction.")
51
+
52
+ # Section for batch prediction
53
+ st.subheader("Batch Prediction")
54
+
55
+ # Allow users to upload a CSV file for batch prediction
56
+ uploaded_file = st.file_uploader("Upload CSV file for batch prediction", type=["csv"])
57
+
58
+ # Make batch prediction when the "Predict Batch" button is clicked
59
+ if uploaded_file is not None:
60
+ if st.button("Predict Batch"):
61
+ response = requests.post("https://aiLearnerOnBudget-SuperKartFrontend.hf.space/v1/salesbatch", files={"file": uploaded_file}) # Send file to Flask API
62
+ if response.status_code == 200:
63
+ predictions = response.json()
64
+ st.success("Batch predictions completed!")
65
+ st.write(predictions) # Display the predictions
66
+ else:
67
+ 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