Update app.py
Browse files
app.py
CHANGED
|
@@ -153,4 +153,10 @@ if st.button("🔮 Predict Sepsis"):
|
|
| 153 |
# Display Data Fields and Descriptions
|
| 154 |
st.sidebar.title("🔍 Data Fields")
|
| 155 |
for field, description in data_fields.items():
|
| 156 |
-
st.sidebar.markdown(f"{field}: {description}")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 153 |
# Display Data Fields and Descriptions
|
| 154 |
st.sidebar.title("🔍 Data Fields")
|
| 155 |
for field, description in data_fields.items():
|
| 156 |
+
st.sidebar.markdown(f"{field}: {description}")
|
| 157 |
+
|
| 158 |
+
|
| 159 |
+
# Add developer sentence at the bottom
|
| 160 |
+
st.write('<p style="text-align: center;">Developed by Rasmo Wanyama</p>', unsafe_allow_html=True)
|
| 161 |
+
|
| 162 |
+
st.stop()
|