我有经纬度,所以需要将RBF内核重新定义为exp(-1/2||sophore distrance||^2),也就是说我需要自己重写一个内核函数。我写我的内核如下:
round.kernel <- function(x,y){
sigma <- 1
#R <- 6371
R <- 1
a <- (sin( (x[1]-y[1])/2 ))^2+cos(x[1])*cos(y[1])*(sin((x[2]-y[2])/2))^2
c <- 2*atan2(sqrt(a),sqrt(1-a))
d <- R*c
res <- exp(-d^2/(2*sigma))
return (res)
}
class(round.kernel) <- "kernel"
我测试了这个功能,内核应该是正确的。但是使用以下培训命令,我收到了错误:
fit <- ksvm(y=train[,2],x=train[,3:4],kernel=round.kernel,type='eps-svr')
Error in .local(x, ...) :
List interface supports only the stringdot kernel.
更棘手的是,我尝试了 ksvm 文档中的示例代码:
k <- function(x,y) {(sum(x*y) +1)*exp(-0.001*sum((x-y)^2))}
class(k) <- "kernel"
但我得到了同样的错误。
任何人都知道如何正确定义核函数?