首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >在R中使用Python包(带有"reticulate")

在R中使用Python包(带有"reticulate")
EN

Stack Overflow用户
提问于 2020-10-18 07:05:05
回答 1查看 163关注 0票数 0

我试着在这里学习这个教程::https://hfshr.netlify.app/posts/2020-06-07-variable-inportance-with-fastshap/

本教程是关于使用名为"SHAP“的机器学习算法,该算法试图为用户提供一种方法来解释复杂的”黑盒“风格算法的结果。

按照教程的要求,我能够让所有的东西都工作起来--除了最后的“力图”。我已经提供了我在底部使用的代码。有没有人能帮我弄清楚为什么这些作用力图不起作用?

代码语言:javascript
复制
library(modeldata)
library(tidymodels)
library(tidyverse)
library(doParallel)
library(probably)
library(gt)

data("credit_data")

data("credit_data")

credit_data <- credit_data %>%
  drop_na()

set.seed(12)

# initial split
split <- initial_split(credit_data, prop = 0.75, strata = "Status")

# train/test sets
train <- training(split)
test <- testing(split)

rec <- recipe(Status ~ ., data = train) %>%
  step_bagimpute(Home, Marital, Job, Income, Assets, Debt) %>%
  step_dummy(Home, Marital, Records, Job, one_hot = T)

# Just some sensible values, not optimised by any means!
mod <- boost_tree(trees = 500,
                  mtry = 6,
                  min_n = 10,
                  tree_depth = 5) %>%
  set_engine("xgboost") %>%
  set_mode("classification")

xgboost_wflow <- workflow() %>%
  add_recipe(rec) %>%
  add_model(mod) %>%
  fit(train)

xg_res <- last_fit(xgboost_wflow,
                   split,
                   metrics = metric_set(roc_auc, pr_auc, accuracy))

preds <- xg_res %>%
  collect_predictions()

xg_res %>%
  collect_metrics()

library(vip)

# Get our model object
xg_mod <- pull_workflow_fit(xgboost_wflow)

vip(xg_mod$fit)

library(fastshap)

# Apply the preprocessing steps with prep and juice to the training data
X <- prep(rec, train) %>%
  juice() %>%
  select(-Status) %>%
  as.matrix()

# Compute shapley values
shap <- explain(xg_mod$fit, X = X, exact = TRUE)

# Create a dataframe of our training data
feat <- prep(rec, train) %>%
  juice()

autoplot(shap,
         type = "dependence",
         feature = "Amount",
         X = feat,
         smooth = TRUE,
         color_by = "Status")

predict(xgboost_wflow, train, type = "prob") %>%
  rownames_to_column("rowid") %>%
  filter(.pred_bad == min(.pred_bad) | .pred_bad == max(.pred_bad)) %>%
  gt()%>%
  fmt_number(columns = 2:3,
             decimals = 3)

library(patchwork)
p1 <- autoplot(shap, type = "contribution", row_num = 1541) +
  ggtitle("Likely bad")

p2 <- autoplot(shap, type = "contribution", row_num = 1806) +
  ggtitle("Likely good")

p1+p2

# here is the error (prior to running this code, I ran "pip install shap" in conda)

force_plot(object = shap[1541,],
           feature_values = X[1541,],
           display = "html",
           link = "logit")

Error in py_call_impl(callable, dots$args, dots$keywords) :
  TypeError: save_html() got an unexpected keyword argument 'plot_html'

谢谢

EN

回答 1

Stack Overflow用户

发布于 2020-11-03 10:43:26

force_plot()是相当实验性的,只是碰巧起作用了。如果收到错误,请确保安装了相应的shap包(及其依赖项)。在任何情况下,您都应该在fastshap GitHub存储库:https://github.com/bgreenwell/fastshap/issues上报告此问题。

--BG

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/64408183

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档