SummaryType
- The type produced by the summarizer at the end of
the experiment from a collection of the given statistics (one
for each fold). This represents the performance result for the
comparison of the performance of the learning algorithms for the
whole experiment.public static class LearnerComparisonExperiment.Result<SummaryType>
extends java.lang.Object
Constructor and Description |
---|
Result(ConfidenceStatistic confidence,
DefaultPair<SummaryType,SummaryType> summaries)
Creates a new instance of Result.
|
Modifier and Type | Method and Description |
---|---|
ConfidenceStatistic |
getConfidence()
Gets the confidence statistic for the learners.
|
DefaultPair<SummaryType,SummaryType> |
getSummaries()
Gets the summary of performance for the learners.
|
void |
setConfidence(ConfidenceStatistic confidence)
Sets the confidence statistic for the learners.
|
void |
setSummaries(DefaultPair<SummaryType,SummaryType> summaries)
Sets the summary of performance for the learners.
|
public Result(ConfidenceStatistic confidence, DefaultPair<SummaryType,SummaryType> summaries)
confidence
- The confidence statistic for the learners.summaries
- The summary of performance for the learners.public ConfidenceStatistic getConfidence()
public void setConfidence(ConfidenceStatistic confidence)
confidence
- The confidence statistic for the learners.public DefaultPair<SummaryType,SummaryType> getSummaries()
public void setSummaries(DefaultPair<SummaryType,SummaryType> summaries)
summaries
- The summary of performance for the learners.