aboutsummaryrefslogtreecommitdiff
path: root/R/gensvm-kernels.R
diff options
context:
space:
mode:
Diffstat (limited to 'R/gensvm-kernels.R')
-rw-r--r--R/gensvm-kernels.R10
1 files changed, 10 insertions, 0 deletions
diff --git a/R/gensvm-kernels.R b/R/gensvm-kernels.R
new file mode 100644
index 0000000..8e445c0
--- /dev/null
+++ b/R/gensvm-kernels.R
@@ -0,0 +1,10 @@
+#' Kernels in GenSVM
+#'
+#' GenSVM can be used for both linear multiclass support vector machine
+#' classification and for nonlinear classification with kernels. In general,
+#' linear classification will be faster but depending on the dataset higher
+#' classification performance can be achieved using a nonlinear kernel.
+#'
+#' The following nonlinear kernels are implemented in the GenSVM package:
+#' \describe{
+#' \item{RBF}{The Radial Basis Function kernel is a commonly used kernel.