Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -56,10 +56,11 @@ if st.button("Предсказать цену"):
|
|
56 |
|
57 |
|
58 |
# Расчет важности фичей с использованием SHAP
|
59 |
-
explainer = shap.
|
60 |
shap_values = explainer.shap_values(input_data)
|
61 |
-
|
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)
|