I would like to use SHAP values to explain the below model:
explainer = shap.DeepExplainer(model, X_train)
shap_values = explainer.shap_values(X_test)
The summary_plot actually works:
shap.summary_plot(shap_values[0], plot_type = 'bar')
but I would like to modify this plot using matplotlib features. In case:
plt = shap.summary_plot(shap_values[0], plot_type = 'bar', show=False)
The plot is shown, and the type of object plt is NoneType, and any modifications are impossible. Do You know how to fore the modification on this plot?