Uses of Class
org.tribuo.common.libsvm.SVMParameters
Packages that use 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
Constructors in org.tribuo.anomaly.libsvm with parameters of type SVMParametersModifierConstructorDescriptionLibSVMAnomalyTrainer
(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
Constructors in org.tribuo.classification.libsvm with parameters of type SVMParametersModifierConstructorDescriptionLibSVMClassificationTrainer
(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
Constructors in org.tribuo.common.libsvm with parameters of type SVMParametersModifierConstructorDescriptionprotected
LibSVMTrainer
(SVMParameters<T> parameters, long seed) Constructs a LibSVMTrainer from the parameters. -
Uses of SVMParameters in org.tribuo.regression.libsvm
Constructors in org.tribuo.regression.libsvm with parameters of type SVMParametersModifierConstructorDescriptionLibSVMRegressionTrainer
(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.