public class TopNLengthMetric extends ListOnlyTopNMetric<org.apache.commons.math3.stat.descriptive.moment.Mean>
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 |
---|---|
org.apache.commons.math3.stat.descriptive.moment.Mean |
createContext(AlgorithmInstance algorithm,
DataSet dataSet,
RecommenderEngine engine)
Create the context for an experimental condition (algorithm/data set pair).
|
MetricResult |
getAggregateMeasurements(org.apache.commons.math3.stat.descriptive.moment.Mean context)
Get the aggregate results from an accumulator.
|
MetricResult |
measureUser(Recommender rec,
TestUser user,
int targetLength,
LongList recommendations,
org.apache.commons.math3.stat.descriptive.moment.Mean context)
Measurement method that only uses the recommend list.
|
measureUser
getAggregateColumnLabels, getColumnLabels, getRequiredRoots
@Nonnull public MetricResult measureUser(Recommender rec, TestUser user, int targetLength, LongList recommendations, org.apache.commons.math3.stat.descriptive.moment.Mean context)
ListOnlyTopNMetric
Measurement method that only uses the recommend list.
Thread Safety: This method may be called concurrently by multiple threads with the same recommender and context.
measureUser
in class ListOnlyTopNMetric<org.apache.commons.math3.stat.descriptive.moment.Mean>
rec
- The recommender used to recommend for this user.user
- The user.targetLength
- The target list length.recommendations
- The list of recommendations.context
- The context.@Nullable public org.apache.commons.math3.stat.descriptive.moment.Mean createContext(AlgorithmInstance algorithm, DataSet dataSet, RecommenderEngine engine)
Metric
Create the context for an experimental condition (algorithm/data set pair). The default implementation returns null
.
Note: Contexts must be thread-safe, in that multiple concurrent calls to the appropriate user-measurement function with the same context must be safe. This can be handled either by the context itself, or by the user-measurement function.
createContext
in class Metric<org.apache.commons.math3.stat.descriptive.moment.Mean>
algorithm
- The algorithm.dataSet
- The data set.engine
- The LensKit recommender engine, if applicable. This can be null for an external algorithm that does not provide a LensKit recommender.null
.@Nonnull public MetricResult getAggregateMeasurements(org.apache.commons.math3.stat.descriptive.moment.Mean context)
Metric
Get the aggregate results from an accumulator. The default implementation returns MetricResult.empty()
.
getAggregateMeasurements
in class Metric<org.apache.commons.math3.stat.descriptive.moment.Mean>
context
- The context for an experimental condition.