Solar-Iz commited on
Commit
ab382c0
·
1 Parent(s): 0706ddb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -4
app.py CHANGED
@@ -56,10 +56,11 @@ if st.button("Предсказать цену"):
56
 
57
 
58
  # Расчет важности фичей с использованием SHAP
59
- explainer = shap.Explainer(final_model)
60
  shap_values = explainer.shap_values(input_data)
61
- shap.force_plot(explainer.expected_value, shap_values, input_data)
62
-
63
- # Показываем график
64
  fig, ax = plt.subplots()
 
65
  st.pyplot(fig)
 
56
 
57
 
58
  # Расчет важности фичей с использованием SHAP
59
+ explainer = shap.TreeExplainer(final_model)
60
  shap_values = explainer.shap_values(input_data)
61
+
62
+ # Отображение SHAP force plot
63
+ st.write("SHAP Force Plot:")
64
  fig, ax = plt.subplots()
65
+ shap.force_plot(explainer.expected_value, shap_values, input_data, matplotlib=True, show=False, ax=ax)
66
  st.pyplot(fig)