We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33c4054 commit a1a5078Copy full SHA for a1a5078
R/svm_rbf.R
@@ -33,8 +33,15 @@
33
#' following _engines_:
34
#' \itemize{
35
#' \item \pkg{R}: `"kernlab"` (the default)
36
+#' \item \pkg{R}: `"liquidSVM"`
37
#' }
38
#'
39
+#' Note that models created using the `liquidSVM` engine cannot be saved like
40
+#' conventional R objects. The `fit` slot of the `model_fit` object has to be
41
+#' saved separately using the `liquidSVM::write.liquidSVM()` function. Likewise
42
+#' to restore a model, the `fit` slot has to be replaced with the model that is
43
+#' read using the `liquidSVM::read.liquidSVM()` function.
44
+#'
45
#' @includeRmd man/rmd/svm-rbf.Rmd details
46
47
#' @importFrom purrr map_lgl
0 commit comments