Upload folder using huggingface_hub
Browse files- Dockerfile +15 -12
- app.py +40 -0
- requirements.txt +6 -3
Dockerfile
CHANGED
|
@@ -1,20 +1,23 @@
|
|
| 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 |
-
|
| 19 |
|
| 20 |
-
|
|
|
|
|
|
| 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,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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="Sandhya777/engine_condition_prediction_model", filename="best_engine_condition_prediction_model_v1.joblib")
|
| 8 |
+
model = joblib.load(model_path)
|
| 9 |
+
|
| 10 |
+
# Streamlit UI for Machine Failure Prediction
|
| 11 |
+
st.title("Engine Condition Prediction App")
|
| 12 |
+
st.write("""
|
| 13 |
+
This application predicts the likelihood of a engine failing based on its operational parameters.
|
| 14 |
+
Please enter the sensor and configuration data below to get a prediction.
|
| 15 |
+
""")
|
| 16 |
+
|
| 17 |
+
# User input
|
| 18 |
+
Engine_rpm = st.number_input("Engine_rpm", min_value=61.0, max_value=2000.0, value=100.0, step=0.1)
|
| 19 |
+
Lub_oil_pressure = st.number_input("Lub_oil_pressure", min_value=0.0, max_value=100.0, value=50.0, step=0.1)
|
| 20 |
+
Fuel_pressure = st.number_input("Fuel_pressure", min_value=0.0, max_value=100.0, value=50.0, step=0)
|
| 21 |
+
Coolant_pressure = st.number_input("Coolant_pressure", min_value=0.0, max_value=100.0, value=50.0, step=0.1)
|
| 22 |
+
lub_oil_temp = st.number_input("lub_oil_temp", min_value=0.0, max_value=100.0, value=50.0, step=0.1)
|
| 23 |
+
Coolant_temp = st.number_input("Coolant_temp", min_value=0.0, max_value=100.0, value=50.0, step=0.1)
|
| 24 |
+
|
| 25 |
+
# Assemble input into DataFrame
|
| 26 |
+
input_data = pd.DataFrame([{
|
| 27 |
+
'Engine_rpm': Engine_rpm,
|
| 28 |
+
'Lub_oil_pressure': Lub_oil_pressure,
|
| 29 |
+
'Fuel_pressure': Fuel_pressure,
|
| 30 |
+
'Coolant_pressure': Coolant_pressure,
|
| 31 |
+
'lub_oil_temp': lub_oil_temp,
|
| 32 |
+
'Coolant_temp': Coolant_temp
|
| 33 |
+
}])
|
| 34 |
+
|
| 35 |
+
|
| 36 |
+
if st.button("Predict Failure"):
|
| 37 |
+
prediction = model.predict(input_data)[0]
|
| 38 |
+
result = "Engine Failure" if prediction == 1 else "No Failure"
|
| 39 |
+
st.subheader("Prediction Result:")
|
| 40 |
+
st.success(f"The model predicts: **{result}**")
|
requirements.txt
CHANGED
|
@@ -1,3 +1,6 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 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
|
| 6 |
+
xgboost==2.1.4
|