Example usage for org.apache.mahout.cf.taste.impl.common RunningAverage interface-usage

List of usage examples for org.apache.mahout.cf.taste.impl.common RunningAverage interface-usage

Introduction

In this page you can find the example usage for org.apache.mahout.cf.taste.impl.common RunningAverage interface-usage.

Usage

From source file com.msiiplab.recsys.rwr.GLRunningAverage.java

/**
 * <p>
 * A simple class that can keep track of a running avearage of a series of
 * numbers. One can add to or remove from the series, as well as update a datum
 * in the series. The class does not actually keep track of the series of
 * values, just its running average, so it doesn't even matter if you

From source file net.myrrix.common.stats.RunningAverageAndMinMax.java

/**
 * Implementations of this class also record a min and max observed value.
 *
 * @see org.apache.mahout.cf.taste.impl.common.RunningAverageAndStdDev
 * @author Sean Owen
 */

From source file net.myrrix.common.stats.WeightedRunningAverage.java

/**
 * <p>Ported from Mahout {@code WeightedRunningAverage} but uses {@code int} weights.</p>
 *
 * @author Mahout
 */
public final class WeightedRunningAverage implements RunningAverage, Serializable {