added threshold for model certainty
Browse files
app.py
CHANGED
@@ -125,7 +125,7 @@ if st.session_state.got_explanation:
|
|
125 |
# st.metric(label='Model Certainty', value=certainty)
|
126 |
# style_metric_cards(border_left_color='#00052D', box_shadow=False)
|
127 |
# # st.markdown('#### Model Certainty')
|
128 |
-
st.metric(label='Model Certainty', value=certainty)
|
129 |
|
130 |
|
131 |
explainability_texts, sorted_indices = get_explainability_texts(shap_values, feature_texts)
|
|
|
125 |
# st.metric(label='Model Certainty', value=certainty)
|
126 |
# style_metric_cards(border_left_color='#00052D', box_shadow=False)
|
127 |
# # st.markdown('#### Model Certainty')
|
128 |
+
st.metric(label='Model Certainty', value=certainty, delta='threshold: 75%')
|
129 |
|
130 |
|
131 |
explainability_texts, sorted_indices = get_explainability_texts(shap_values, feature_texts)
|