
## S3 method for class 'KBModel':
modelOffset(object)getSVMSlotValue(paramName, model, raw = FALSE)
TRUE
the parameter value is delivered in
exactly the way as it is stored in the SVM specific model, when
set to FALSE
it is delivered in unified formatgetSVMSlotValue
:
value of requested parameter in unified or native format dependent on
parameter raw
.## create kernel object for normalized spectrum kernel
specK5 <- spectrumKernel(k=5)
## load data
data(TFBS)
## perform training - feature weights are computed by default
model <- kbsvm(enhancerFB, yFB, specK5, pkg="LiblineaR",
svm="C-svc", cost=15, cross=10, showProgress=TRUE)
showProgress=TRUE)
## show result of validation
cvResult(model)
## show feature weights
featureWeights(model)[1:5]
## show model offset
modelOffset(model)
Run the code above in your browser using DataLab