class |
AbstractNearestNeighborBasedEvaluator |
Ancestor for evaluators that use a nearest neighbor search.
|
class |
CrossValidatedNeighborHood |
Evaluator that cross-validates the specified classifier on the neighborhood determined for the instance under evaluation.
|
class |
CrossValidatedPrediction |
Evaluator that (kind of) cross-validates the specified classifier on the neighborhood determined for the instance under evaluation.
A classifier is built on each of the training sets that is generated for the cross-validation.
|
class |
DistanceToCenter |
Uses the specified nearest neighbor search to determine a neighborhood.
|
class |
DistanceToClosest |
Uses the specified nearest neighbor search to locate the closest instance in the training data and returns the distance to it.
|
class |
EnsembleEvaluator |
Builds an ensemble of classifiers on the training data to determine the MAE per classifier, to be used as normalization factor.
At evaluation time, each classifier makes a prediction on the instance and the classification is divided by the normalization factor for this classifier.
|
class |
IntervalEstimatorEvaluator |
Stores the interval provided by the interval estimator classifier
|
class |
MultiClassifierEvaluator |
Multi-classifier based evaluator.
|
class |
SavitzkyGolayRange |
This evaluator builds three classifiers:
- on Savitzky-Golay filtered data with no derivative
- on Savitzky-Golay filtered data with first derivative
- on Savitzky-Golay filtered data with second derivative
Each instance under evaluation will be pushed through the three classifiers separately and the range of the three predictions is then output as evaluation result.
|