static <A extends Classifier> Evaluator.EvaluationResult |
Evaluator.crossValidateClassifier(ClassifierFactory<A> classifierFactory,
de.jungblut.math.DoubleVector[] features,
de.jungblut.math.DoubleVector[] outcome,
int numLabels,
int folds,
java.lang.Double threshold,
boolean verbose) |
Does a k-fold crossvalidation on the given classifiers with features and
outcomes.
|
static <A extends Classifier> Evaluator.EvaluationResult |
Evaluator.crossValidateClassifier(ClassifierFactory<A> classifierFactory,
de.jungblut.math.DoubleVector[] features,
de.jungblut.math.DoubleVector[] outcome,
int numLabels,
int folds,
java.lang.Double threshold,
int numThreads,
boolean verbose) |
Does a k-fold crossvalidation on the given classifiers with features and
outcomes.
|
static <A extends Classifier> Evaluator.EvaluationResult |
Evaluator.tenFoldCrossValidation(ClassifierFactory<A> classifierFactory,
de.jungblut.math.DoubleVector[] features,
de.jungblut.math.DoubleVector[] outcome,
int numLabels,
java.lang.Double threshold,
boolean verbose) |
Does a 10 fold crossvalidation.
|
static <A extends Classifier> Evaluator.EvaluationResult |
Evaluator.tenFoldCrossValidation(ClassifierFactory<A> classifierFactory,
de.jungblut.math.DoubleVector[] features,
de.jungblut.math.DoubleVector[] outcome,
int numLabels,
java.lang.Double threshold,
int numThreads,
boolean verbose) |
Does a 10 fold crossvalidation.
|