为什么石灰表格方法会在数据帧中生成类型错误?

时间:2018-12-17 19:59:06

标签: python pandas machine-learning lime

我正在准备使用LIME来解释梯度提升模型的结果。

这是我拥有的数据:

enter image description here

我正在使用的代码:

explainer = lime.lime_tabular.LimeTabularExplainer(training_data = sample, 
                                                   mode = 'regression',
                                                   training_labels = y_train,
                                                   feature_names = ["x1","x2"])

还有我得到的错误:

enter image description here

TypeError: unhashable type: 'slice'

1 个答案:

答案 0 :(得分:0)

您可能应该将sample转换为numpy数组。

来自source code

  

training_data:numpy二维数组