Amogha Y A commited on
Commit ·
fa4d2f5
1
Parent(s): 8db06ae
Remove debug utils
Browse files- src/streamlit_app.py +3 -3
src/streamlit_app.py
CHANGED
|
@@ -57,9 +57,9 @@ if st.button("Generate"):
|
|
| 57 |
st.write("### **Predicted Value:**")
|
| 58 |
st.metric(label="Model Output", value=round(predict[0], 3))
|
| 59 |
|
| 60 |
-
# Optional: Show input summary
|
| 61 |
-
with st.expander("Show Input Data"):
|
| 62 |
-
|
| 63 |
|
| 64 |
except Exception as err:
|
| 65 |
st.error(f"⚠️ Error: {err}")
|
|
|
|
| 57 |
st.write("### **Predicted Value:**")
|
| 58 |
st.metric(label="Model Output", value=round(predict[0], 3))
|
| 59 |
|
| 60 |
+
# # Optional: Show input summary
|
| 61 |
+
# with st.expander("Show Input Data"):
|
| 62 |
+
# st.dataframe(in_df)
|
| 63 |
|
| 64 |
except Exception as err:
|
| 65 |
st.error(f"⚠️ Error: {err}")
|