目录
  • lime
  • 代 码
  • 对单个样本进行预测解释
  • 适用问题

简单的模型例如线性回归,lr等模型非常易于解释,但在实际应用中的效果却远远低于复杂的梯度提升树模型以及神经网络等模型。

现在大部分互联网公司的建模都是基于梯度提升树或者神经网络模型等复杂模型,遗憾的是,这些模型虽然效果好,但是我们却较难对其进行很好地解释,这也是目前一直困扰着大家的一个重要问题,现在大家也越来越加关注模型的解释性。

本文介绍一种解释机器学习模型输出的方法lime。它可以认为是sharp的升级版,github链接:https://github.com/marcotcr/lime,有所收获多多支持

lime

lime(local interpretable model-agnostic explanations)支持的模型包括:

  • 结构化模型的解释;
  • 文本分类器的解释;
  • 图像分类器的解释;

lime被用作解释机器学习模型的解释,通过lime我们可以知道为什么模型会这样进行预测。

本文我们就重点观测一下lime是如何对预测结果进行解释的。

代 码

此处我们使用winequality-white数据集,并且将quality<=5设置为0,其它的值转变为1.

# !pip install lime
import pandas as pd
from xgboost import xgbclassifier
import shap
import numpy as np
from sklearn.model_selection import train_test_split
df = pd.read_csv('./data/winequality-white.csv',sep = ';')
df['quality'] = df['quality'].apply(lambda x: 0 if x <= 5 else 1)
df.head()

# 训练集测试集分割
x = df.drop('quality', axis=1)
y = df['quality'] 
x_train, x_test, y_train, y_test = train_test_split(x, y, test_size=0.2, random_state=1)
# 模型训练
model = xgbclassifier(n_estimators = 100, random_state=42)
model.fit(x_train, y_train)
score = model.score(x_test, y_test)
score

the use of label encoder in xgbclassifier is deprecated and will be removed in a future release. 0.832653061224489

对单个样本进行预测解释

下面的图中表明了单个样本的预测值中各个特征的贡献。

import lime
from lime import lime_tabular
explainer = lime_tabular.limetabularexplainer(
    training_data=np.array(x_train),
    feature_names=x_train.columns,
    class_names=['bad', 'good'],
    mode='classification'
)

模型有84%的置信度是坏的wine,而其中alcohol,totals ulfur dioxide是最重要的。

import lime
from lime import lime_tabular
explainer = lime_tabular.limetabularexplainer(
    training_data=np.array(x_train),
    feature_names=x_train.columns,
    class_names=['bad', 'good'],
    mode='classification'
)

模型有59%的置信度是坏的wine,而其中alcohol,chlorides, density, citric acid是最重要的预测参考因素。

exp = explainer.explain_instance(data_row=x_test.iloc[1], predict_fn=model.predict_proba)
exp.show_in_notebook(show_table=true)

适用问题

lime可以认为是sharp的升级版,它通过预测结果解释机器学习模型很简单。它为我们提供了一个很好的方式来向非技术人员解释地下发生了什么。您不必担心数据可视化,因为lime库会为您处理数据可视化。

参考链接

https://www.kaggle.com/piyushagni5/white-wine-quality
lime: how to interpret machine learning models with python
https://github.com/marcotcr/lime
https://mp.weixin.qq.com/s/47omheehqjdqttcilin2hw

以上就是github已达8.9kstars的最佳模型解释器lime的详细内容,更多关于模型解释器lime的资料请关注www.887551.com其它相关文章!