ccwizard commited on
Commit
ffe75d8
·
verified ·
1 Parent(s): a0adc6b

Upload folder using huggingface_hub

Browse files
Files changed (3) hide show
  1. Dockerfile +15 -12
  2. app.py +44 -0
  3. requirements.txt +5 -3
Dockerfile CHANGED
@@ -1,20 +1,23 @@
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
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
+ RUN useradd -m -u 1000 user
14
+ USER user
15
+ ENV HOME=/home/user \
16
+ PATH=/home/user/.local/bin:$PATH
17
+
18
+ WORKDIR $HOME/app
19
 
20
+ COPY --chown=user . $HOME/app
21
 
22
+ # Define the command to run the Streamlit app on port "8501" and make it accessible externally
23
+ CMD ["streamlit", "run", "app.py", "--server.port=8501", "--server.address=0.0.0.0", "--server.enableXsrfProtection=false"]
app.py ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ import pandas as pd
3
+ from huggingface_hub import hf_hub_download
4
+ import joblib
5
+
6
+ # Download and load the model
7
+ model_path = hf_hub_download(repo_id="ccwizard/PIMA-Diabetes-Prediction", filename="best_pima_diabetes_model_v1.joblib") # enter the Hugging Face username here
8
+ model = joblib.load(model_path)
9
+
10
+ # Streamlit UI for Machine Failure Prediction
11
+ st.title("PIMA Diabetes Prediction App")
12
+ st.write("""
13
+ This application predicts the likelihood of a patient having diabetes based on their health attributes.
14
+ Please enter the sensor and configuration data below to get a prediction.
15
+ """)
16
+
17
+ # User inputs
18
+ preg = st.number_input("Number of Pregnancies", min_value=0, max_value=20, value=1)
19
+ plas = st.number_input("Plasma Glucose Concentration", min_value=0, max_value=300, value=120)
20
+ pres = st.number_input("Diastolic Blood Pressure (mm Hg)", min_value=0, max_value=200, value=70)
21
+ skin = st.number_input("Triceps Skinfold Thickness (mm)", min_value=0, max_value=100, value=20)
22
+ test = st.number_input("2-Hour Serum Insulin (mu U/ml)", min_value=0, max_value=900, value=80)
23
+ mass = st.number_input("Body Mass Index (BMI)", min_value=0.0, max_value=70.0, value=25.0, step=0.1)
24
+ pedi = st.number_input("Diabetes Pedigree Function", min_value=0.0, max_value=2.5, value=0.5, step=0.01)
25
+ age = st.number_input("Age", min_value=1, max_value=120, value=30)
26
+
27
+ # Assemble input into DataFrame
28
+ input_data = pd.DataFrame([{
29
+ 'preg': preg,
30
+ 'plas': plas,
31
+ 'pres': pres,
32
+ 'skin': skin,
33
+ 'test': test,
34
+ 'mass': mass,
35
+ 'pedi': pedi,
36
+ 'age': age
37
+ }])
38
+
39
+ # Prediction button
40
+ if st.button("Predict Diabetes"):
41
+ prediction = model.predict(input_data)[0]
42
+ result = "Diabetic" if prediction == 1 else "Non-Diabetic"
43
+ st.subheader("Prediction Result:")
44
+ st.success(f"The model predicts: **{result}**")
requirements.txt CHANGED
@@ -1,3 +1,5 @@
1
- altair
2
- pandas
3
- streamlit
 
 
 
1
+ pandas==2.2.2
2
+ huggingface_hub==0.32.6
3
+ streamlit==1.43.2
4
+ joblib==1.5.1
5
+ scikit-learn==1.6.0