Uses of Class
org.tribuo.common.libsvm.SVMParameters
Package
Description
Provides an interface to LibSVM for anomaly detection problems.
Provides an interface to LibSVM for classification problems.
The base interface to LibSVM.
Provides an interface to LibSVM for regression problems.
-
Uses of SVMParameters in org.tribuo.anomaly.libsvm
ModifierConstructorDescriptionLibSVMAnomalyTrainer
(SVMParameters<Event> parameters) Creates a one-class LibSVM trainer using the supplied parameters andTrainer.DEFAULT_SEED
.LibSVMAnomalyTrainer
(SVMParameters<Event> parameters, long seed) Creates a one-class LibSVM trainer using the supplied parameters and RNG seed. -
Uses of SVMParameters in org.tribuo.classification.libsvm
ModifierConstructorDescriptionLibSVMClassificationTrainer
(SVMParameters<Label> parameters) Constructs a classification LibSVM trainer using the specified parameters andTrainer.DEFAULT_SEED
.LibSVMClassificationTrainer
(SVMParameters<Label> parameters, long seed) Constructs a classification LibSVM trainer using the specified parameters and seed. -
Uses of SVMParameters in org.tribuo.common.libsvm
ModifierConstructorDescriptionprotected
LibSVMTrainer
(SVMParameters<T> parameters, long seed) Constructs a LibSVMTrainer from the parameters. -
Uses of SVMParameters in org.tribuo.regression.libsvm
ModifierConstructorDescriptionLibSVMRegressionTrainer
(SVMParameters<Regressor> parameters) Constructs a LibSVMRegressionTrainer using the supplied parameters without standardizing the regression variables.LibSVMRegressionTrainer
(SVMParameters<Regressor> parameters, boolean standardize) Constructs a LibSVMRegressionTrainer using the supplied parameters andTrainer.DEFAULT_SEED
.LibSVMRegressionTrainer
(SVMParameters<Regressor> parameters, boolean standardize, long seed) Constructs a LibSVMRegressionTrainer using the supplied parameters and seed.