Update app.py
Browse files
app.py
CHANGED
|
@@ -209,16 +209,16 @@ with col_inputs:
|
|
| 209 |
|
| 210 |
with col_output:
|
| 211 |
|
| 212 |
-
# define place holders for output display
|
| 213 |
-
output_placeholder = st.empty()
|
| 214 |
-
probability_placeholder = st.empty()
|
| 215 |
-
details_placeholder = st.empty()
|
| 216 |
-
|
| 217 |
-
|
| 218 |
# ==========================
|
| 219 |
# Single Value Prediction
|
| 220 |
# ==========================
|
| 221 |
with st.expander("🧠 Prediction Result", expanded=True):
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 222 |
# dispaly result only after submit is done
|
| 223 |
if submitted:
|
| 224 |
|
|
|
|
| 209 |
|
| 210 |
with col_output:
|
| 211 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 212 |
# ==========================
|
| 213 |
# Single Value Prediction
|
| 214 |
# ==========================
|
| 215 |
with st.expander("🧠 Prediction Result", expanded=True):
|
| 216 |
+
|
| 217 |
+
# define place holders for output display
|
| 218 |
+
output_placeholder = st.empty()
|
| 219 |
+
probability_placeholder = st.empty()
|
| 220 |
+
details_placeholder = st.empty()
|
| 221 |
+
|
| 222 |
# dispaly result only after submit is done
|
| 223 |
if submitted:
|
| 224 |
|