Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -25,17 +25,6 @@ st.set_page_config(
|
|
| 25 |
# -----------------------------
|
| 26 |
# Title & Description
|
| 27 |
# -----------------------------
|
| 28 |
-
st.markdown("""
|
| 29 |
-
<h2 style="margin-top: 0.5rem;">
|
| 30 |
-
🔧 Engine Predictive Maintenance System
|
| 31 |
-
</h2>
|
| 32 |
-
""", unsafe_allow_html=True)
|
| 33 |
-
st.markdown(
|
| 34 |
-
"Predict potential engine failures using real-time sensor inputs. "
|
| 35 |
-
"The model is optimized for **high fault recall** to minimize missed failures."
|
| 36 |
-
)
|
| 37 |
-
|
| 38 |
-
|
| 39 |
st.markdown("""
|
| 40 |
<style>
|
| 41 |
.block-container {
|
|
@@ -45,6 +34,16 @@ st.markdown("""
|
|
| 45 |
</style>
|
| 46 |
""", unsafe_allow_html=True)
|
| 47 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 48 |
# Hide +/- buttons and reduce input size
|
| 49 |
st.markdown("""
|
| 50 |
<style>
|
|
|
|
| 25 |
# -----------------------------
|
| 26 |
# Title & Description
|
| 27 |
# -----------------------------
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 28 |
st.markdown("""
|
| 29 |
<style>
|
| 30 |
.block-container {
|
|
|
|
| 34 |
</style>
|
| 35 |
""", unsafe_allow_html=True)
|
| 36 |
|
| 37 |
+
|
| 38 |
+
# ---------------------------------------------------------
|
| 39 |
+
# TITLE
|
| 40 |
+
# ---------------------------------------------------------
|
| 41 |
+
st.title("🏖️ Predict Maintenance")
|
| 42 |
+
st.write("The Predict Maintenance app is a tool to predict if an Engine needs any maintenance based on provided operating sensor parameters.")
|
| 43 |
+
st.write("Fill in the details below and click **Predict** to see if the Engine needs maintenance to prevent from failure.")
|
| 44 |
+
|
| 45 |
+
|
| 46 |
+
|
| 47 |
# Hide +/- buttons and reduce input size
|
| 48 |
st.markdown("""
|
| 49 |
<style>
|