已注册的 doParallel 集群不适用于 train/caret parRF 模型
Posted
技术标签:
【中文标题】已注册的 doParallel 集群不适用于 train/caret parRF 模型【英文标题】:Registered doParallel cluster doesn't work with the train/caret parRF model 【发布时间】:2016-02-08 10:16:30 【问题描述】:我无法让 parRF
正常工作,尽管 parApply
等其他东西工作正常。
我尝试过 makeCluster
和 makePSOCKcluster
以及一些类似的变体。
它不断返回错误task 1 failed - could not find function getDoParWorkers
cores_2_use <- detectCores() - 2
cl <- makeCluster(cores_2_use, useXDR = F)
clusterSetRNGStream(cl, 9956)
registerDoParallel(cl, cores_2_use)
rf_train <- train(y=y, x=x,
method='parRF', tuneGrid = data.frame(mtry = ncol(x)), na.action = na.omit,
trControl=trainControl(method='oob',number=10, allowParallel = TRUE)
)
Error in : task 1 failed - "could not find function "getDoParWorkers""
【问题讨论】:
【参考方案1】:更新: Topepo 已更新 Github 上的代码以修复此错误!就install_github("/topepo/caret/pkg/caret/")
我之前的回答已弃用
有人from Github 也提出了这个解决方法:
# parallel
require(caret); library(doParallel);
cl <- makePSOCKcluster(detectCores());
clusterEvalQ(cl, library(foreach)); registerDoParallel(cl)
y <- mtcars$mpg; x <- mtcars[, -mtcars$mpg];
#--------------------------------------------------------------
rf_train <- train(y=y, x=x,
method='parRF', tuneGrid = data.frame(mtry = ncol(x)), na.action = na.omit,
trControl=trainControl(method='oob',number=10, allowParallel = TRUE)
)
rf_train
#--------------------------------------------------------------
stopCluster(cl);
在运行此版本的代码之前,请务必重新开始。即使在 stopCluster(cl)
和 stopImplicitCluster()
再次尝试 parRF 之后,这种方法对我也不起作用,直到我完全重新启动 R 和 RStudio。
【讨论】:
我测试了 github 代码并且它可以工作(对我来说)。我增加了测试数据,所以随机森林可以使用。否则,它在核心显示它们正在做某事之前就完成了。【参考方案2】:我可以重现您的错误消息。解决它需要一些黑客攻击。我不确定这是错误还是其他原因。
但我设法通过复制模型和调整拟合函数使其工作。我在 fit 函数中添加了require(foreach)
。
奇怪的是,一旦训练模型使用新的 parRF_Mod 作为一种方法运行,出现错误的原始训练就可以正常工作而没有任何错误。从干净的会话开始,错误再次出现。因此,某处某事并没有按应有的方式进行。
library(doParallel)
cl = makeCluster(parallel::detectCores()-1, type = "SOCK")
registerDoParallel(cl)
getDoParWorkers()
library(caret)
library(randomForest)
y <- mtcars$mpg
x <- mtcars[, -mtcars$mpg ]
parRF_mod <- getModelInfo("parRF", regex = FALSE)[[1]]
parRF_mod$fit <- function (x, y, wts, param, lev, last, classProbs, ...)
# added the requirement of foreach
require(foreach)
workers <- getDoParWorkers()
theDots <- list(...)
theDots$ntree <- if (is.null(theDots$ntree))
250
else theDots$ntree
theDots$x <- x
theDots$y <- y
theDots$mtry <- param$mtry
theDots$ntree <- ceiling(theDots$ntree/workers)
out <- foreach(ntree = 1:workers, .combine = combine) %dopar%
library(randomForest)
do.call("randomForest", theDots)
out$call["x"] <- "x"
out$call["y"] <- "y"
out
rf_train <- train(y=y, x=x,
method=parRF_mod, tuneGrid = data.frame(mtry = ncol(x)), na.action = na.omit,
trControl=trainControl(method='oob',number=10, allowParallel = TRUE)
)
stopcluster(cl)
我的会话信息:
R version 3.2.2 (2015-08-14)
Platform: x86_64-w64-mingw32/x64 (64-bit)
Running under: Windows 7 x64 (build 7601) Service Pack 1
locale:
[1] LC_COLLATE=Dutch_Netherlands.1252 LC_CTYPE=Dutch_Netherlands.1252 LC_MONETARY=Dutch_Netherlands.1252 LC_NUMERIC=C
[5] LC_TIME=Dutch_Netherlands.1252
attached base packages:
[1] parallel stats graphics grDevices utils datasets methods base
other attached packages:
[1] randomForest_4.6-12 e1071_1.6-7 caret_6.0-58 ggplot2_1.0.1 lattice_0.20-33 doParallel_1.0.10 iterators_1.0.8
[8] foreach_1.4.3
loaded via a namespace (and not attached):
[1] Rcpp_0.12.1 magrittr_1.5 splines_3.2.2 MASS_7.3-44 munsell_0.4.2 colorspace_1.2-6 minqa_1.2.4 stringr_1.0.0
[9] car_2.1-0 plyr_1.8.3 tools_3.2.2 nnet_7.3-11 pbkrtest_0.4-2 grid_3.2.2 gtable_0.1.2 nlme_3.1-122
[17] mgcv_1.8-8 quantreg_5.19 snow_0.3-13 class_7.3-14 MatrixModels_0.4-1 lme4_1.1-10 digest_0.6.8 Matrix_1.2-2
[25] nloptr_1.0.4 reshape2_1.4.1 codetools_0.2-14 stringi_1.0-1 compiler_3.2.2 scales_0.3.0 stats4_3.2.2 SparseM_1.7
[33] proto_0.3-10
【讨论】:
太棒了!!感谢您的黑客攻击!如果您以后发现有关这些奇怪问题的任何其他详细信息,请更新此线程。我也会尝试联系开发人员。以上是关于已注册的 doParallel 集群不适用于 train/caret parRF 模型的主要内容,如果未能解决你的问题,请参考以下文章
插入符号训练二进制 glm 通过 doParallel 在并行集群上失败