Package | Description |
---|---|
org.tribuo.anomaly.libsvm |
Provides an interface to LibSVM for anomaly detection problems.
|
org.tribuo.classification.libsvm |
Provides an interface to LibSVM for classification problems.
|
org.tribuo.common.libsvm |
The base interface to LibSVM.
|
org.tribuo.regression.libsvm |
Provides an interface to LibSVM for regression problems.
|
Constructor and Description |
---|
LibSVMAnomalyTrainer(SVMParameters<Event> parameters)
Creates a one-class LibSVM trainer using the supplied parameters and
Trainer.DEFAULT_SEED . |
LibSVMAnomalyTrainer(SVMParameters<Event> parameters,
long seed)
Creates a one-class LibSVM trainer using the supplied parameters and RNG seed.
|
Constructor and Description |
---|
LibSVMClassificationTrainer(SVMParameters<Label> parameters)
Constructs a classification LibSVM trainer using the specified parameters
and
Trainer.DEFAULT_SEED . |
LibSVMClassificationTrainer(SVMParameters<Label> parameters,
long seed)
Constructs a classification LibSVM trainer using the specified parameters and seed.
|
Constructor and Description |
---|
LibSVMTrainer(SVMParameters<T> parameters,
long seed)
Constructs a LibSVMTrainer from the parameters.
|
Constructor and Description |
---|
LibSVMRegressionTrainer(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 and
Trainer.DEFAULT_SEED . |
LibSVMRegressionTrainer(SVMParameters<Regressor> parameters,
boolean standardize,
long seed)
Constructs a LibSVMRegressionTrainer using the supplied parameters and seed.
|
Copyright © 2015–2021 Oracle and/or its affiliates. All rights reserved.