作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 R 中的 kernlab 库(ksvm 函数)实现一个新奇检测器。 这是我正在尝试做的一个简单示例:
# Training data
xxTrain <- matrix(rnorm(2000), nrow=1000, ncol=2, byrow=TRUE)
y <- rep(1,1000)
classifier <- ksvm(xxTrain, y, type="one-svc", kernel="rbfdot", kpar="automatic")
# Test data
x1 <- rnorm(1000)
scale <- c(rep(1,500), rep(10,100), rep(1,400))
x2 <- rnorm(1000)*scale
xxTest <- matrix(c(x1,x2), nrow=1000, ncol=2, byrow=TRUE)
# Prediction
p <- predict(classifier, xxTest, type="response")
# Visualization
plot(x2, type='l')
lines(x1, col="red")
points(5*as.integer(p), type='l', col="blue")
最佳答案
这是你做错了什么:
xxTest <- matrix(c(x1,x2), nrow=1000, ncol=2, byrow=TRUE)
xxTest <- matrix(c(x1,x2), nrow=1000, ncol=2, byrow=F )
xxTest <- cbind( x1, x2 )
p <- predict( classifier, cbind( x1, x2 ), type= "response" )
byrow=T
,您首先使用 x1 的元素填充前 500 行(或者,第 1 列和第 2 列),然后使用 x2 填充
xxTest
的其余 500 行。 .由于奇点在 x2 中约为 500 - 600,因此它出现在
xxTest
的两列中。在 (500+500)/2 - (500+600)/2 左右,即 750-800,这是您可以看到的。
关于r - 如何在 R 中使用 ksvm 执行新颖性检测?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12932106/
我是一名优秀的程序员,十分优秀!