Uses of Interface
org.tweetyproject.machinelearning.Trainer
Packages that use Trainer
-
Uses of Trainer in org.tweetyproject.machinelearning
Classes in org.tweetyproject.machinelearning that implement TrainerModifier and TypeClassDescriptionclass
GridSearchParameterLearner<S extends Observation,
T extends Category> A grid-search approach for learning parameters.class
ParameterTrainer<S extends Observation,
T extends Category> Performs a parameter training on a given trainer, i.e.Methods in org.tweetyproject.machinelearning with parameters of type TrainerModifier and TypeMethodDescriptionabstract double
This method takes a trainer and a training set and returns the performance (in the range [0,1]) of the trained classifier on the training set (e.g.double
Constructors in org.tweetyproject.machinelearning with parameters of type TrainerModifierConstructorDescriptionGridSearchParameterLearner
(Trainer<S, T> trainer, ClassificationTester<S, T> tester, int depth, int partitions) Creates a new grid-search parameter learner with the given arguments.ParameterTrainer
(Trainer<S, T> trainer) Creates a new parameter trainer for the given trainer. -
Uses of Trainer in org.tweetyproject.machinelearning.svm
Classes in org.tweetyproject.machinelearning.svm that implement TrainerModifier and TypeClassDescriptionclass
Trains a standard multi-class RBF support vector machine.