Solar-Iz commited on
Commit
a5019b5
·
1 Parent(s): 7064dcf

Update app.py

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