Class ClassificationTester<S extends Observation,T extends Category>

java.lang.Object
org.tweetyproject.machinelearning.ClassificationTester<S,T>
Type Parameters:
S - type of observations
T - type of categories
Direct Known Subclasses:
CrossValidator

public abstract class ClassificationTester<S extends Observation,T extends Category> extends Object
Classes implementing this interface provide the means to test a training mechanism for performance.

The `ClassificationTester` class is responsible for testing the performance of a classifier, either by cross-validation or by directly measuring the accuracy of the classifier on a test set. The performance is measured as a value between 0 and 1, where a higher value indicates better performance.

Author:
Matthias Thimm