Spaces:
Sleeping
Sleeping
Upload folder using huggingface_hub
Browse files- Dockerfile +9 -13
- app.py +46 -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,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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("Revenue Prediction")
|
| 7 |
+
|
| 8 |
+
# Section for online prediction
|
| 9 |
+
st.subheader("Online Prediction")
|
| 10 |
+
|
| 11 |
+
# Collect user input for property features
|
| 12 |
+
product_weight = st.number_input("Product Weight", min_value=1.0, max_value=30.0, value=4.0, step=0.1)
|
| 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.004, max_value=0.300, step=0.001, value=0.004,format="%.3f") # format ensures three decimal places are displayed
|
| 15 |
+
product_type = st.selectbox("Product Type", ["Fruits and Vegetables","Snack Foods","Frozen Foods","Dairy","Household","Baking Goods","Canned",
|
| 16 |
+
"Health and Hygiene","Meat","Soft Drinks","Breads","Hard Drinks","Others","Starchy Foods",
|
| 17 |
+
"Breakfast","Seafood"])
|
| 18 |
+
product_mrp = st.number_input("Product_MRP", min_value=25.0, max_value=300.0, step=1.0, value=31.0)
|
| 19 |
+
store_id = st.selectbox("Store_Id", ["OUT001","OUT002","OUT003","OUT004"])
|
| 20 |
+
store_establishment_year = st.number_input("Store_Establishment_Year", min_value=1987, max_value=2010, step=1, value=1987)
|
| 21 |
+
store_size = st.selectbox("Store Size",["Small","Medium","High"])
|
| 22 |
+
store_location_city_type = st.selectbox("Store Location City Type", ["Tier 1","Tier 2","Tier 3"])
|
| 23 |
+
store_type = st.selectbox("Store Type", ["Supermarket Type1","Supermarket Type2","Departmental Store","Food Mart"])
|
| 24 |
+
|
| 25 |
+
# Convert user input into a DataFrame
|
| 26 |
+
input_data = pd.DataFrame([{
|
| 27 |
+
'Product_Weight': product_weight,
|
| 28 |
+
'Product_Sugar_Content': product_sugar_content,
|
| 29 |
+
'Product_Allocated_Area': product_allocated_area,
|
| 30 |
+
'Product_Type': product_type,
|
| 31 |
+
'Product_MRP': product_mrp,
|
| 32 |
+
'Store_Id': store_id,
|
| 33 |
+
'Store_Establishment_Year': store_establishment_year,
|
| 34 |
+
'Store_Size': store_size,
|
| 35 |
+
'Store_Location_City_Type': store_location_city_type,
|
| 36 |
+
'Store_Type': store_type
|
| 37 |
+
}])
|
| 38 |
+
|
| 39 |
+
# Make prediction when the "Predict" button is clicked
|
| 40 |
+
if st.button("Predict"):
|
| 41 |
+
response = requests.post("https://manjushs-testbackend.hf.space/v1/revenue", json=input_data.to_dict(orient='records')[0]) # Send data to Flask API
|
| 42 |
+
if response.status_code == 200:
|
| 43 |
+
prediction = response.json()['Predicted Sales Total (in dollars)']
|
| 44 |
+
st.success(f"Predicted Sales Total (in dollars): {prediction}")
|
| 45 |
+
else:
|
| 46 |
+
st.error("Error making 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
|