- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试将代码用于插入符号中完全可重现的并行模型,但不明白如何在种子对象中设置向量的大小。对于 gbm,我有 4 个调整参数,总共 11 个不同的级别,我的调整网格中有 54 行。如果我在下面的“for(i in 1:10)”行中指定任何值 < 18 作为最后一个值,我会收到一个错误:“坏种子:种子对象应该是长度为 11 的列表,其中包含 10 个整数向量大小为 18 且最后一个列表元素具有单个整数。”为什么是18?对于大于 18 的值(例如 54),它也可以正常运行 - 为什么?非常感谢您的帮助。以下基于http://topepo.github.io/caret/training.html ,添加了一些东西。
library(mlbench)
data(Sonar)
str(Sonar[, 1:10])
library(caret)
library(doParallel)
set.seed(998)
inTraining <- createDataPartition(Sonar$Class, p = .75, list = FALSE)
training <- Sonar[ inTraining,]
testing <- Sonar[-inTraining,]
grid <- expand.grid(n.trees = seq(50,150,by=50), interaction.depth = seq(1,3,by=1),
shrinkage = seq(.09,.11,by=.01),n.minobsinnode=seq(8,10,by=2))
# set seed to run fully reproducible model in parallel mode using caret
set.seed(825)
seeds <- vector(mode = "list", length = 11) # length is = (n_repeats*nresampling)+1
for(i in 1:10) seeds[[i]]<- sample.int(n=1000, 11) # ...the number of tuning parameter...
seeds[[11]]<-sample.int(1000, 1) # for the last model
fitControl <- trainControl(method = "cv",number = 10,seeds=seeds)
# run model in parallel
cl <- makeCluster(detectCores())
registerDoParallel(cl)
gbmFit1 <- train(Class ~ ., data = training,method = "gbm",
trControl = fitControl,tuneGrid=grid,verbose = FALSE)
gbmFit1
最佳答案
我将分两部分解决你的问题:
1 - 设置 seeds
:
如你所说的那样做的代码:
set.seed(825)
seeds <- vector(mode = "list", length = 11)
for(i in 1:10) seeds[[i]]<- sample.int(n=1000, 54)
#for the last model
seeds[[11]]<-sample.int(1000, 1)
11
在 seeds <- vector(mode = "list", length = 11)
是 (n_repeats*nresampling)+1
,所以在你的情况下,你正在使用 10-fold CV
, 所以 10+1 = 11
.如果您使用 repeatedcv
与 number=10 and repeats = 5
您将替换 11
由 (5*10)+1 = 51
.
10
在 for(i in 1:10)
是 (n_repeats*nresampling)
.在你的情况下是 10
因为您使用的是 10-fold CV
.同样,如果您使用 repeatedcv
与 number=10 and repeats = 5
应该是 for(i in 1:50)
.
54
在 sample.int(n=1000, 54)
是 number of tuning parameter combinations
.在您的情况下,您有 4 parameters
与 3,3,3 and 2 values
.所以,它是 3*3*3*2 = 54
. 但是,我记得我在某处红色表示对于 gbm,该模型适合 max(n.trees)
在网格中,并从中派生出具有较少树的模型,这解释了为什么 caret
计算 seeds
基于interaction.depth * shrinkage * n.minobsinnode
在你的情况下3 * 3 * 2 = 18
而不是 3*3*3*2 = 54
我们稍后会看到。
但如果您使用的是 SVM
带网格的模型 svmGrid <- expand.grid(sigma= 2^c(-25, -20, -15,-10, -5, 0), C= 2^c(0:5))
你的值(value)是6 * 6 = 36
记住,使用 seeds
的目的是允许reproducible research
通过在每次重采样迭代中设置适合模型的种子。
seeds[[11]]<-sample.int(1000, 1)
用于设置适合整个数据集的最后一个(最佳)模型的种子。
2 - 为什么指定值 < 18 时会出现错误,但值 >= 18 时不会出现错误
我能够在我的机器上重现同样的错误:
Error in train.default(x, y, weights = w, ...) :
Bad seeds: the seed object should be a list of length 11 with 10 integer vectors of size 18 and the last list element having a single integer
因此,通过检查 train.default
我能够找到它的来源。错误消息由 stop
触发在行 7 to 10
基于测试badSeed
在行 4
和 5
.
else {
if (!(length(trControl$seeds) == 1 && is.na(trControl$seeds))) {
numSeeds <- unlist(lapply(trControl$seeds, length))
4 badSeed <- (length(trControl$seeds) < length(trControl$index) +
5 1) || (any(numSeeds[-length(numSeeds)] < nrow(trainInfo$loop)))
if (badSeed)
7 stop(paste("Bad seeds: the seed object should be a list of length",
8 length(trControl$index) + 1, "with", length(trControl$index),
9 "integer vectors of size", nrow(trainInfo$loop),
10 "and the last list element having a", "single integer"))
}
}
号码18
来自nrow(trainInfo$loop)
,所以我们需要找到 trainInfo$loop
的值.对象trainInfo
被赋值为 trainInfo <- models$loop(tuneGrid)
在第 3 行:
if (trControl$method != "none") {
if (is.function(models$loop) && nrow(tuneGrid) > 1) {
3 trainInfo <- models$loop(tuneGrid)
if (!all(c("loop", "submodels") %in% names(trainInfo)))
stop("The 'loop' function should produce a list with elements 'loop' and 'submodels'")
}
现在,我们需要找到对象 models
.它被赋值为 models <- getModelInfo(method, regex = FALSE)[[1]]
在第 2 行:
else {
2 models <- getModelInfo(method, regex = FALSE)[[1]]
if (length(models) == 0)
stop(paste("Model", method, "is not in caret's built-in library"))
}
由于我们使用的是 method = "gbm"
,我们可以看到getModelInfo("gbm", regex = FALSE)[[1]]$loop
的值并检查以下结果:
> getModelInfo("gbm", regex = FALSE)[[1]]$loop
function(grid) {
3 loop <- ddply(grid, c("shrinkage", "interaction.depth", "n.minobsinnode"),
function(x) c(n.trees = max(x$n.trees)))
submodels <- vector(mode = "list", length = nrow(loop))
for(i in seq(along = loop$n.trees)) {
index <- which(grid$interaction.depth == loop$interaction.depth[i] &
grid$shrinkage == loop$shrinkage[i] &
grid$n.minobsinnode == loop$n.minobsinnode[i])
trees <- grid[index, "n.trees"]
submodels[[i]] <- data.frame(n.trees = trees[trees != loop$n.trees[i]])
}
list(loop = loop, submodels = submodels)
}
>
loop
(在上面的第 3 行)被赋值:
loop <- ddply(grid, c("shrinkage", "interaction.depth", "n.minobsinnode"),
function(x) c(n.trees = max(x$n.trees)))`
现在,让我们通过您的grid
与 54 rows
到上面的行并检查结果:
> nrow(grid)
[1] 54
>
> loop <- ddply(grid, c("shrinkage", "interaction.depth", "n.minobsinnode"),
+ function(x) c(n.trees = max(x$n.trees)))
> loop
shrinkage interaction.depth n.minobsinnode n.trees
1 0.09 1 8 150
2 0.09 1 10 150
3 0.09 2 8 150
4 0.09 2 10 150
5 0.09 3 8 150
6 0.09 3 10 150
7 0.10 1 8 150
8 0.10 1 10 150
9 0.10 2 8 150
10 0.10 2 10 150
11 0.10 3 8 150
12 0.10 3 10 150
13 0.11 1 8 150
14 0.11 1 10 150
15 0.11 2 8 150
16 0.11 2 10 150
17 0.11 3 8 150
18 0.11 3 10 150
>
啊!我们找到了。值 18
来自nrow(trainInfo$loop)
来自getModelInfo("gbm", regex = FALSE)[[1]]$loop
如上所示,仅 18 rows
.
现在,回到触发错误的测试:
badSeed <- (length(trControl$seeds) < length(trControl$index) +
1) || (any(numSeeds[-length(numSeeds)] < nrow(trainInfo$loop)))
测试的第一部分(length(trControl$seeds) < length(trControl$index) + 1)
是 FALSE
, 但第二部分 (any(numSeeds[-length(numSeeds)] < nrow(trainInfo$loop)))
是 TRUE
对于所有小于 18
的值[来自nrow(trainInfo$loop)
] 和 FALSE
对于所有大于 18
的值.这就是为值 <18
触发错误的原因。而不是>=18
.正如我上面所说,插入符号计算 seeds
基于interaction.depth * shrinkage * n.minobsinnode
在你的情况下3 * 3 * 2 = 18
(模型适合 max(n.trees)
并且其他模型是从它派生的,因此不需要 54
整数)。
关于r - 在插入符号中并行操作的可重现结果的种子对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32099991/
我需要将文本放在 中在一个 Div 中,在另一个 Div 中,在另一个 Div 中。所以这是它的样子: #document Change PIN
奇怪的事情发生了。 我有一个基本的 html 代码。 html,头部, body 。(因为我收到了一些反对票,这里是完整的代码) 这是我的CSS: html { backgroun
我正在尝试将 Assets 中的一组图像加载到 UICollectionview 中存在的 ImageView 中,但每当我运行应用程序时它都会显示错误。而且也没有显示图像。 我在ViewDidLoa
我需要根据带参数的 perl 脚本的输出更改一些环境变量。在 tcsh 中,我可以使用别名命令来评估 perl 脚本的输出。 tcsh: alias setsdk 'eval `/localhome/
我使用 Windows 身份验证创建了一个新的 Blazor(服务器端)应用程序,并使用 IIS Express 运行它。它将显示一条消息“Hello Domain\User!”来自右上方的以下 Ra
这是我的方法 void login(Event event);我想知道 Kotlin 中应该如何 最佳答案 在 Kotlin 中通配符运算符是 * 。它指示编译器它是未知的,但一旦知道,就不会有其他类
看下面的代码 for story in book if story.title.length < 140 - var story
我正在尝试用 C 语言学习字符串处理。我写了一个程序,它存储了一些音乐轨道,并帮助用户检查他/她想到的歌曲是否存在于存储的轨道中。这是通过要求用户输入一串字符来完成的。然后程序使用 strstr()
我正在学习 sscanf 并遇到如下格式字符串: sscanf("%[^:]:%[^*=]%*[*=]%n",a,b,&c); 我理解 %[^:] 部分意味着扫描直到遇到 ':' 并将其分配给 a。:
def char_check(x,y): if (str(x) in y or x.find(y) > -1) or (str(y) in x or y.find(x) > -1):
我有一种情况,我想将文本文件中的现有行包含到一个新 block 中。 line 1 line 2 line in block line 3 line 4 应该变成 line 1 line 2 line
我有一个新项目,我正在尝试设置 Django 调试工具栏。首先,我尝试了快速设置,它只涉及将 'debug_toolbar' 添加到我的已安装应用程序列表中。有了这个,当我转到我的根 URL 时,调试
在 Matlab 中,如果我有一个函数 f,例如签名是 f(a,b,c),我可以创建一个只有一个变量 b 的函数,它将使用固定的 a=a1 和 c=c1 调用 f: g = @(b) f(a1, b,
我不明白为什么 ForEach 中的元素之间有多余的垂直间距在 VStack 里面在 ScrollView 里面使用 GeometryReader 时渲染自定义水平分隔线。 Scrol
我想知道,是否有关于何时使用 session 和 cookie 的指南或最佳实践? 什么应该和什么不应该存储在其中?谢谢! 最佳答案 这些文档很好地了解了 session cookie 的安全问题以及
我在 scipy/numpy 中有一个 Nx3 矩阵,我想用它制作一个 3 维条形图,其中 X 轴和 Y 轴由矩阵的第一列和第二列的值、高度确定每个条形的 是矩阵中的第三列,条形的数量由 N 确定。
假设我用两种不同的方式初始化信号量 sem_init(&randomsem,0,1) sem_init(&randomsem,0,0) 现在, sem_wait(&randomsem) 在这两种情况下
我怀疑该值如何存储在“WORD”中,因为 PStr 包含实际输出。? 既然Pstr中存储的是小写到大写的字母,那么在printf中如何将其给出为“WORD”。有人可以吗?解释一下? #include
我有一个 3x3 数组: var my_array = [[0,1,2], [3,4,5], [6,7,8]]; 并想获得它的第一个 2
我意识到您可以使用如下方式轻松检查焦点: var hasFocus = true; $(window).blur(function(){ hasFocus = false; }); $(win
我是一名优秀的程序员,十分优秀!