print.gensvm.grid {gensvm} | R Documentation |
Print the fitted GenSVMGrid model
Description
Prints the summary of the fitted GenSVMGrid model
Usage
## S3 method for class 'gensvm.grid'
print(x, ...)
Arguments
x |
a |
... |
further arguments are ignored |
Value
returns the object passed as input
Author(s)
Gerrit J.J. van den Burg, Patrick J.F. Groenen
Maintainer: Gerrit J.J. van den Burg <gertjanvandenburg@gmail.com>
References
Van den Burg, G.J.J. and Groenen, P.J.F. (2016). GenSVM: A Generalized Multiclass Support Vector Machine, Journal of Machine Learning Research, 17(225):1–42. URL https://jmlr.org/papers/v17/14-526.html.
See Also
gensvm.grid
, predict.gensvm.grid
,
plot.gensvm.grid
, gensvm.grid
,
gensvm-package
Examples
x <- iris[, -5]
y <- iris[, 5]
# fit a grid search and print the resulting object
grid <- gensvm.grid(x, y)
print(grid)
[Package gensvm version 0.1.7 Index]