Package moa.evaluation.preview
Class MeanPreviewCollection
- java.lang.Object
-
- moa.evaluation.preview.MeanPreviewCollection
-
public class MeanPreviewCollection extends Object
Class that holds separatePreviewCollection
s for mean and standard deviation values. The values can be calculated from a PreviewCollection that contains the results of multiple runs for the same parameter configurations.- Version:
- $Revision: 1 $
- Author:
- Cornelius Styp von Rekowski (cornelius.styp@ovgu.de)
-
-
Constructor Summary
Constructors Constructor Description MeanPreviewCollection(PreviewCollection<PreviewCollection<Preview>> multiRunPreviews)
On creation of a MeanPreviewCollection, the mean Previews and standard deviation Previews are calculated from the given PreviewCollection by averaging the measurements for all entries over the different runs that have been performed.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PreviewCollection<Preview>
getMeanPreviews()
PreviewCollection<Preview>
getStdPreviews()
-
-
-
Constructor Detail
-
MeanPreviewCollection
public MeanPreviewCollection(PreviewCollection<PreviewCollection<Preview>> multiRunPreviews)
On creation of a MeanPreviewCollection, the mean Previews and standard deviation Previews are calculated from the given PreviewCollection by averaging the measurements for all entries over the different runs that have been performed. This results in a collection of mean Previews and a separate collection of standard deviation Previews, both containing Previews for each parameter configuration.
-
-
Method Detail
-
getMeanPreviews
public PreviewCollection<Preview> getMeanPreviews()
- Returns:
- the PreviewCollection of mean values
-
getStdPreviews
public PreviewCollection<Preview> getStdPreviews()
- Returns:
- the PreviewCollection of standard deviation values
-
-