Displaying 2 results from an estimated 2 matches for "tanhdot".
Did you mean:
tandon
2008 Jun 25
1
stringdot
...ass~.,data=promotergene,kernel="rbfdot",C=10,cross=5)# works fine with the rbf kernel
gene.string <- ksvm(Class~.,data=promotergene,kernel="stringdot",C=10,cross=5) # this give the following error
#Error in match.arg(kernel, c("rbfdot", "polydot", "tanhdot", "vanilladot", :
# 'arg' should be one of ?rbfdot?, ?polydot?, ?tanhdot?, ?vanilladot?, ?laplacedot?, ?besseldot?, ?anovadot?, ?splinedot?, ?matrix?
What am I doing wrong here?
Thanks ../Murli
2010 Sep 24
0
kernlab:ksvm:eps-svr: bug?
...001,
63 shrinking = TRUE,
64 ...
65 ,subset
66 ,na.action = na.omit)
67 {
...
74 sparse <- FALSE
75
76 if(is.character(kernel)){
77 kernel <- match.arg(kernel,c("rbfdot","polydot","tanhdot","vanilladot","laplacedot","besseldot","anovadot","splinedot","matrix"))
78
79 if(kernel == "matrix")
80 if(dim(x)[1]==dim(x)[2])
81 return(ksvm(as.kernelMatrix(x), y = y, type = type, C =...