Spaces:
Runtime error
Runtime error
Isabel Gwara
commited on
Commit
·
9713997
1
Parent(s):
0e8c5c1
Update app.py
Browse files
app.py
CHANGED
@@ -174,11 +174,11 @@ if form.form_submit_button("Submit to get your recommendation!"):
|
|
174 |
|
175 |
form.subheader(prediction)
|
176 |
|
177 |
-
|
178 |
-
col1, col2 = box.columns(2)
|
179 |
col1.metric("Number of Different Possible Results", len(cat_value_dicts[final_colname]))
|
180 |
col2.metric("Model Accuracy", acc)
|
181 |
-
|
|
|
182 |
|
183 |
with open('info.md') as f:
|
184 |
f.readline()
|
|
|
174 |
|
175 |
form.subheader(prediction)
|
176 |
|
177 |
+
col1, col2 = st.columns(2)
|
|
|
178 |
col1.metric("Number of Different Possible Results", len(cat_value_dicts[final_colname]))
|
179 |
col2.metric("Model Accuracy", acc)
|
180 |
+
st.metric("Most Important Question")
|
181 |
+
st.text(get_feat())
|
182 |
|
183 |
with open('info.md') as f:
|
184 |
f.readline()
|