Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
153 views

Class Weight Syntax in Kernlab?

Hi I am trying out classification for imbalanced dataset in R using kernlab package, as the class distribution is not 1:1 I am using the option of class.weights in the ksvm() function call however I ...
0
votes
0answers
5 views

kernlab native multiclass (spoc-svc) svm with explicit linear kernel

I've tried the 4 scenarios specified by type={spoc-svc, C-svc} x kernel={vanilladot, my own linear kernel} and 3 out of the 4 scenarios work fine with my data, which consists of 3 classes of 224 ...
0
votes
1answer
61 views

kernlab regression

Anyone encountered this difficulty with kernlab regression? It seems like it's losing some scaling factors or something, but perhaps I'm calling it wrong. library(kernlab) df <- ...
0
votes
2answers
241 views

Problem installing Kernlab from Source (lazy loading failed)

I have been trying to install the R package, Kernlab from source, but i have been running into problems. At first, i had some error related to, gfortran, so i downloaded the GNU fortran complier from ...
0
votes
0answers
245 views

Kernlab: relevance vector machine and gaussian process regression prediction error [closed]

Does anyone know how to construct a confidence interval for predicting a new test value given a trained relevance vector machine (rvm) and/or gaussian process regression (gausspr) using Kernlab? More ...
0
votes
2answers
1k views

Help using predict() for kernlab's SVM in R?

I am trying to use the kernlab R package to do Support Vector Machines (SVM). For my very simple example, I have two pieces of training data. A and B. (A and B are of type matrix - they are adjacency ...