Package | Description |
---|---|
gov.sandia.cognition.learning.experiment |
Provides experiments for validating the performance of learning algorithms.
|
Modifier and Type | Method and Description |
---|---|
LearnerComparisonExperiment.Result<SummaryType> |
LearnerComparisonExperiment.evaluate(BatchLearner<? super java.util.Collection<? extends FoldDataType>,? extends LearnedType> learner1,
BatchLearner<? super java.util.Collection<? extends FoldDataType>,? extends LearnedType> learner2,
java.util.Collection<? extends InputDataType> data)
Evaluates the two batch learners using the given data on the same set of
validation folds and returns the resulting information including the
confidence statistic that the two are different along with the summary
of their performance.
|
LearnerComparisonExperiment.Result<SummaryType> |
LearnerComparisonExperiment.evaluate(Pair<BatchLearner<? super java.util.Collection<? extends FoldDataType>,? extends LearnedType>,BatchLearner<? super java.util.Collection<? extends FoldDataType>,? extends LearnedType>> learners,
java.util.Collection<? extends InputDataType> data)
Evaluates the two batch learners using the given data on the same set of
validation folds and returns the resulting information including the
confidence statistic that the two are different along with the summary
of their performance.
|