weka.classifiers |
|
Java Source File Name | Type | Comment |
BVDecompose.java | Class |
Class for performing a Bias-Variance decomposition on any classifier using the method specified in:
Ron Kohavi, David H. |
BVDecomposeSegCVSub.java | Class |
This class performs Bias-Variance decomposion on any classifier using the sub-sampled cross-validation procedure as specified in (1).
The Kohavi and Wolpert definition of bias and variance is specified in (2).
The Webb definition of bias and variance is specified in (3).
Geoffrey I. |
CheckClassifier.java | Class | Class for examining the capabilities and finding problems with
classifiers. |
Classifier.java | Class | Abstract classifier. |
CostMatrix.java | Class | Class for storing and manipulating a misclassification cost matrix.
The element at position i,j in the matrix is the penalty for classifying
an instance of class j as class i. |
EnsembleLibrary.java | Class | This class represents a library of classifiers. |
EnsembleLibraryModel.java | Class | This class is a light wrapper that is meant to represent a
classifier in a classifier library. |
EnsembleLibraryModelComparator.java | Class | This class is a Comparator for the LibraryModel class. |
Evaluation.java | Class | Class for evaluating machine learning models. |
IntervalEstimator.java | Interface | |
IteratedSingleClassifierEnhancer.java | Class | Abstract utility class for handling settings common to
meta classifiers that build an ensemble from a single base learner. |
IterativeClassifier.java | Interface | Interface for classifiers that can induce models of growing
complexity one step at a time. |
MultipleClassifiersCombiner.java | Class | Abstract utility class for handling settings common to
meta classifiers that build an ensemble from multiple classifiers. |
RandomizableClassifier.java | Class | Abstract utility class for handling settings common to randomizable
classifiers. |
RandomizableIteratedSingleClassifierEnhancer.java | Class | Abstract utility class for handling settings common to randomizable
meta classifiers that build an ensemble from a single base learner. |
RandomizableMultipleClassifiersCombiner.java | Class | Abstract utility class for handling settings common to randomizable
meta classifiers that build an ensemble from multiple classifiers based
on a given random number seed. |
RandomizableSingleClassifierEnhancer.java | Class | Abstract utility class for handling settings common to randomizable
meta classifiers that build an ensemble from a single base learner. |
SingleClassifierEnhancer.java | Class | Abstract utility class for handling settings common to meta
classifiers that use a single base learner. |
Sourcable.java | Interface | Interface for classifiers that can be converted to Java source. |
UpdateableClassifier.java | Interface | Interface to incremental classification models that can learn using
one instance at a time. |