【问题标题】:Getting a mistake with shap plotting形状绘图出现错误
【发布时间】:2021-03-20 21:58:02
【问题描述】:
X = df.copy()

# Save and drop labels
y = df['class']
X = X.drop('class', axis=1)
cat_features = list(range(0, X.shape[1]))
model = CatBoostClassifier(iterations=2000, learning_rate=0.1, random_seed=12)
model.fit(X, y,  verbose=False, plot=False)

explainer = shap.Explainer(model)
shap_values = explainer(X)

shap.force_plot(explainer.expected_value, shap_values[0:5,:],X.iloc[0:5,:], plot_cmap="DrDb")

---------------------------------------------------------------------------
AssertionError                            Traceback (most recent call last)
<ipython-input-170-ba1eca12b9ed> in <module>
----> 1 shap.force_plot(10, shap_values[0:5,:],X.iloc[0:5,:], plot_cmap="DrDb")

~\anaconda3\lib\site-packages\shap\plots\_force.py in force(base_value, shap_values, features, feature_names, out_names, link, plot_cmap, matplotlib, show, figsize, ordering_keys, ordering_keys_time_format, text_rotation, contribution_threshold)
    101 
    102     if type(shap_values) != np.ndarray:
--> 103         return visualize(shap_values)
    104 
    105     # convert from a DataFrame or other types

~\anaconda3\lib\site-packages\shap\plots\_force.py in visualize(e, plot_cmap, matplotlib, figsize, show, ordering_keys, ordering_keys_time_format, text_rotation, min_perc)
    343             return AdditiveForceArrayVisualizer(e, plot_cmap=plot_cmap, ordering_keys=ordering_keys, ordering_keys_time_format=ordering_keys_time_format)
    344     else:
--> 345         assert False, "visualize() can only display Explanation objects (or arrays of them)!"
    346 
    347 class BaseVisualizer:

AssertionError: visualize() can only display Explanation objects (or arrays of them)!

试图用 shap 和我的数据进行绘图,但出错了,我实际上不明白为什么。没有发现任何关于这个的东西。请说明如何避免此错误?

explainer.expected_value
-5.842052267820879

【问题讨论】:

标签: python shap


【解决方案1】:

你应该把最后一行改成这样:shap.force_plot(explainer.expected_value, shap_values.values[0:5,:],X.iloc[0:5,:], plot_cmap="DrDb")

通过调用shap_values.values 而不仅仅是shap_values,因为shap_values 包含shapley 值、base_valuesdata 。在检查变量之前,我遇到了同样的问题。

【讨论】:

  • 谢谢,这对我有用。 shap 的文档示例急需更新
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2013-02-16
  • 1970-01-01
  • 1970-01-01
  • 2018-08-26
  • 1970-01-01
相关资源
最近更新 更多