public class TopNLengthMetric extends ListOnlyTopNMetric<MeanAccumulator>
Metric that measures how long a TopN list actually is.
This metric is registered with the type name length
.
Modifier and Type | Class and Description |
---|---|
static class |
TopNLengthMetric.LengthResult |
Constructor and Description |
---|
TopNLengthMetric()
Construct a new length metric.
|
Modifier and Type | Method and Description |
---|---|
MeanAccumulator |
createContext(AlgorithmInstance algorithm,
DataSet dataSet,
Recommender recommender)
Create the context for an experimental condition (algorithm/data set pair).
|
MetricResult |
getAggregateMeasurements(MeanAccumulator context)
Get the aggregate results from an accumulator.
|
MetricResult |
measureUser(TestUser user,
int targetLength,
LongList recommendations,
MeanAccumulator context)
Measurement method that only uses the recommend list.
|
measureUser
getAggregateColumnLabels, getColumnLabels, getRequiredRoots
@Nonnull public MetricResult measureUser(TestUser user, int targetLength, LongList recommendations, MeanAccumulator context)
ListOnlyTopNMetric
Measurement method that only uses the recommend list.
measureUser
in class ListOnlyTopNMetric<MeanAccumulator>
user
- The user.targetLength
- The target list length.recommendations
- The list of recommendations.context
- The context.@Nullable public MeanAccumulator createContext(AlgorithmInstance algorithm, DataSet dataSet, Recommender recommender)
Metric
Create the context for an experimental condition (algorithm/data set pair). The default implementation returns null
.
createContext
in class Metric<MeanAccumulator>
algorithm
- The algorithm.dataSet
- The data set.recommender
- The LensKit recommender, if applicable. This can be null for an external algorithm that does not provide a LensKit recommender.null
.@Nonnull public MetricResult getAggregateMeasurements(MeanAccumulator context)
Metric
Get the aggregate results from an accumulator. The default implementation returns MetricResult.empty()
.
getAggregateMeasurements
in class Metric<MeanAccumulator>
context
- The context for an experimental condition.