- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想尝试 R 中包 caret 的 sbf 函数,以使用方法“ranger”执行特征选择和分类,因为使用方法“rf”的训练时间非常长。
当我使用 sbf 进行模型训练时,我总是遇到错误信息:
Error in { : task 1 failed - "undefined columns selected"
对于背景:我的原始数据集包含大约。 6200 次观察和大约。 15200 个具有二进制特征表示的特征,应该减少到大约。 1700 个特征。分类问题是二元的。
我制作了一个与我的原始数据集相似的可重现样本,但它以相同的错误消息结尾。我还添加了输出和 session 信息。
谁能帮我弄清楚如何规避这个问题?
源代码
library(doSNOW)
library(caret)
library(entropy)
library(ranger)
# setup elements for sbf functions
igfit <- caretSBF
# score function
multiigScore <- function(x, y) {
uniigScore <- function (x, y) {
library(entropy)
# make x binary
xbinary <- as.numeric(x>0)
ybinary <- as.numeric(y==levels(y)[1])
# make a joint frequency table
disc <- discretize2d(xbinary, ybinary, 2, 2, r1=c(0,1), r2=c(0,1))
# calculate ig score
ig_score<-mi.empirical(disc)
as.numeric(ig_score)
}
apply(x, 2, uniigScore, y=y)
}
igfit$score <- multiigScore
# filter function
igfit$filter <- function (score, x, y) rank(score, ties.method = "first") <= 5
# data
x <- 0:1
y <- c("a", "b")
train_y <- as.factor(sample(y, 100, replace = T))
train_x <- data.frame(sample(x, 100, replace = T),
sample(x, 100, replace = T),
sample(x, 100, replace = T),
sample(x, 100, replace = T),
sample(x, 100, replace = T),
sample(x, 100, replace = T))
names(train_x) <-c("c", "d", "e", "f", "g", "h")
# control objects
custom_ctrl <- trainControl(method = "none")
sbf_ctrl <- sbfControl(functions = igfit,
method = "cv", number = 10,
multivariate = T, allowParallel = T,
saveDetails = T, returnResamp = "final", verbose = T)
sbf_fit <- sbf(train_x, train_y,
trControl = custom_ctrl,
sbfControl = sbf_ctrl,
method = "ranger",
tuneGrid = expand.grid(mtry=c(2)))
输出
Error in { : task 1 failed - "undefined columns selected"
session 信息
R version 3.2.5 (2016-04-14)
Platform: x86_64-w64-mingw32/x64 (64-bit)
Running under: Windows 7 x64 (build 7601) Service Pack 1
locale:
[1] LC_COLLATE=German_Germany.1252
[2] LC_CTYPE=German_Germany.1252
[3] LC_MONETARY=German_Germany.1252
[4] LC_NUMERIC=C
[5] LC_TIME=German_Germany.1252
attached base packages:
[1] stats graphics grDevices utils datasets methods
[7] base
other attached packages:
[1] randomForest_4.6-12 e1071_1.6-7 ranger_0.5.0
[4] entropy_1.2.1 caret_6.0-71 ggplot2_2.1.0
[7] lattice_0.20-33 doSNOW_1.0.14 snow_0.4-1
[10] iterators_1.0.8 foreach_1.4.3
loaded via a namespace (and not attached):
[1] Rcpp_0.12.7 magrittr_1.5 splines_3.2.5
[4] MASS_7.3-45 munsell_0.4.3 colorspace_1.2-6
[7] minqa_1.2.4 stringr_1.1.0 car_2.1-3
[10] plyr_1.8.4 tools_3.2.5 parallel_3.2.5
[13] nnet_7.3-12 pbkrtest_0.4-6 grid_3.2.5
[16] gtable_0.2.0 nlme_3.1-125 mgcv_1.8-12
[19] quantreg_5.29 class_7.3-14 MatrixModels_0.4-1
[22] lme4_1.1-12 Matrix_1.2-4 nloptr_1.0.4
[25] reshape2_1.4.1 codetools_0.2-14 stringi_1.1.1
[28] compiler_3.2.5 scales_0.4.0 stats4_3.2.5
[31] SparseM_1.72
最佳答案
我想我自己找到了解决方案:
要使 sbf 与“游侠”一起工作,必须更改 custom_ctrl <- trainControl(method = "none")
至 custom_ctrl <- trainControl(method = "none", classProbs = TRUE)
. classProbs
的默认值是FALSE
这在使用“游侠”时会导致问题。
关于R 插入符 : What causes error "undefined columns selected" using sbf and method "ranger"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39574404/
我只是有一个更琐碎的问题。 为什么undefined == undefined 返回true,而undefined >= undefined 为false? undefined 等于 undefine
用PHP 7.2编写套接字服务器。根据Firefox 60中的“网络”选项卡,服务器的一些HTTP响应的第一行随机变为undefined undefined undefined。因此,我尝试记录套接字
在 JavaScript 中这是真的: undefined == undefined 但这是错误的: undefined <= undefined 起初我以为<=运算符包含第一个,但我猜它试图将其转换
在回答这个问题 (Difference between [Object, Object] and Array(2)) 时,我在 JavaScript 数组中遇到了一些我以前不知道的东西(具有讽刺意味的
来自https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Array/of , Note: thi
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
当我添加 到我的 PrimeFaces Mobile 页面,然后我在服务器日志中收到以下警告 WARNING: JSF1064: Unable to find or serve resource, u
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我是一名优秀的程序员,十分优秀!