Spaces:
Runtime error
Runtime error
Isabel Gwara
commited on
Commit
·
b7d5afb
1
Parent(s):
68a1154
Update app.py
Browse files
app.py
CHANGED
|
@@ -135,5 +135,11 @@ if form.form_submit_button("Submit to get your recommendation!"):
|
|
| 135 |
|
| 136 |
form.subheader(prediction)
|
| 137 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 138 |
with open('info.md') as f:
|
| 139 |
st.markdown(f.read())
|
|
|
|
| 135 |
|
| 136 |
form.subheader(prediction)
|
| 137 |
|
| 138 |
+
col1, col2, col3 = stl.columns(3)
|
| 139 |
+
col1.metric("Options", data.columns.length, "+2")
|
| 140 |
+
col2.metric("Accuracy", round(metrics.accuracy_score(y_test, y_pred) * 100, 1), "-1%")
|
| 141 |
+
col3.metric("Hi", 7)
|
| 142 |
+
|
| 143 |
+
|
| 144 |
with open('info.md') as f:
|
| 145 |
st.markdown(f.read())
|