|
CompositeClassifier
A base class for creating composite classifiers
|
|
Chain
A chain is a list of actions to be performed on a dataset,
the last of which is assumed to be a classifier.
|
|
FeatureSelect
A method for combining a feature selector and classifier;
training consists of performing feature selection and afterwards training
the classifier on the selected features;
use this classifier to test the accuracy of a feature selector/classifier
combination.
|
|
FeatureSelectAll
A method for combining a feature selector and classifier;
the difference from FeatureSelect is that it is specifically
designed for computing the accuracy while varying the
number of features.
|
|
AggregateClassifier
classifier combines the predictions of classifiers trained on
different datasets.
|