Uses of Interface
net.sf.tweety.machinelearning.Classifier
-
Packages that use Classifier Package Description net.sf.tweety.machinelearning net.sf.tweety.machinelearning.svm -
-
Uses of Classifier in net.sf.tweety.machinelearning
Methods in net.sf.tweety.machinelearning that return Classifier Modifier and Type Method Description Classifier
ParameterTrainer. train(TrainingSet<S,T> trainingSet)
Classifier
ParameterTrainer. train(TrainingSet<S,T> trainingSet, ParameterSet params)
Classifier
Trainer. train(TrainingSet<S,T> trainingSet)
Trains a classifier on the given training set.Classifier
Trainer. train(TrainingSet<S,T> trainingSet, ParameterSet params)
Trains a classifier on the given training set with the given parametersMethods in net.sf.tweety.machinelearning with parameters of type Classifier Modifier and Type Method Description double
ClassificationTester. test(Classifier classifier, TrainingSet<S,T> trainingSet)
Measures the performance of the given classifier on the given test set, i.e. -
Uses of Classifier in net.sf.tweety.machinelearning.svm
Classes in net.sf.tweety.machinelearning.svm that implement Classifier Modifier and Type Class Description class
SupportVectorMachine
Realizes a support vector machine classifier utilizing LIBSVM.
-