Uses of Interface
org.tweetyproject.machinelearning.Trainer
- 
Packages that use Trainer Package Description org.tweetyproject.machinelearning org.tweetyproject.machinelearning.svm  - 
- 
Uses of Trainer in org.tweetyproject.machinelearning
Classes in org.tweetyproject.machinelearning that implement Trainer Modifier and Type Class Description classGridSearchParameterLearner<S extends Observation,T extends Category>A grid-search approach for learning parameters.classParameterTrainer<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 Trainer Modifier and Type Method Description abstract doubleClassificationTester. test(Trainer<S,T> trainer, TrainingSet<S,T> trainingSet)This methods takes a trainer and a training set and returns the performance (in [0,1]) of the trained classifier on the training set (e.g.doubleCrossValidator. test(Trainer<S,T> trainer, TrainingSet<S,T> trainingSet)Constructors in org.tweetyproject.machinelearning with parameters of type Trainer Constructor Description GridSearchParameterLearner(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 Trainer Modifier and Type Class Description classMultiClassRbfTrainerTrains a standard multi-class RBF support vector machine. 
 -