public class ALS extends Object implements scala.Serializable, Logging
ALS attempts to estimate the ratings matrix R
as the product of two lower-rank matrices,
X
and Y
, i.e. X * Yt = R
. Typically these approximations are called 'factor' matrices.
The general approach is iterative. During each iteration, one of the factor matrices is held
constant, while the other is solved for using least squares. The newly-solved factor matrix is
then held constant while solving for the other factor matrix.
This is a blocked implementation of the ALS factorization algorithm that groups the two sets of factors (referred to as "users" and "products") into blocks and reduces communication by only sending one copy of each user vector to each product block on each iteration, and only for the product blocks that need that user's feature vector. This is achieved by precomputing some information about the ratings matrix to determine the "out-links" of each user (which blocks of products it will contribute to) and "in-link" information for each product (which of the feature vectors it receives from each user block it will depend on). This allows us to send only an array of feature vectors between each user block and product block, and have the product block find the users' ratings and update the products based on these messages.
For implicit preference data, the algorithm used is based on
"Collaborative Filtering for Implicit Feedback Datasets", available at
http://dx.doi.org/10.1109/ICDM.2008.22
, adapted for the blocked approach used here.
Essentially instead of finding the low-rank approximations to the rating matrix R
,
this finds the approximations for a preference matrix P
where the elements of P
are 1 if
r > 0 and 0 if r = 0. The ratings then act as 'confidence' values related to strength of
indicated user
preferences rather than explicit ratings given to items.
Constructor and Description |
---|
ALS()
Constructs an ALS instance with default parameters: {numBlocks: -1, rank: 10, iterations: 10,
lambda: 0.01, implicitPrefs: false, alpha: 1.0}.
|
Modifier and Type | Method and Description |
---|---|
MatrixFactorizationModel |
run(RDD<Rating> ratings)
Run ALS with the configured parameters on an input RDD of (user, product, rating) triples.
|
ALS |
setAlpha(double alpha)
:: Experimental ::
Sets the constant used in computing confidence in implicit ALS.
|
ALS |
setBlocks(int numBlocks)
Set the number of blocks to parallelize the computation into; pass -1 for an auto-configured
number of blocks.
|
ALS |
setImplicitPrefs(boolean implicitPrefs)
Sets whether to use implicit preference.
|
ALS |
setIterations(int iterations)
Set the number of iterations to run.
|
ALS |
setLambda(double lambda)
Set the regularization parameter, lambda.
|
ALS |
setRank(int rank)
Set the rank of the feature matrices computed (number of features).
|
ALS |
setSeed(long seed)
Sets a random seed to have deterministic results.
|
static MatrixFactorizationModel |
train(RDD<Rating> ratings,
int rank,
int iterations)
Train a matrix factorization model given an RDD of ratings given by users to some products,
in the form of (userID, productID, rating) pairs.
|
static MatrixFactorizationModel |
train(RDD<Rating> ratings,
int rank,
int iterations,
double lambda)
Train a matrix factorization model given an RDD of ratings given by users to some products,
in the form of (userID, productID, rating) pairs.
|
static MatrixFactorizationModel |
train(RDD<Rating> ratings,
int rank,
int iterations,
double lambda,
int blocks)
Train a matrix factorization model given an RDD of ratings given by users to some products,
in the form of (userID, productID, rating) pairs.
|
static MatrixFactorizationModel |
train(RDD<Rating> ratings,
int rank,
int iterations,
double lambda,
int blocks,
long seed)
Train a matrix factorization model given an RDD of ratings given by users to some products,
in the form of (userID, productID, rating) pairs.
|
static MatrixFactorizationModel |
trainImplicit(RDD<Rating> ratings,
int rank,
int iterations)
Train a matrix factorization model given an RDD of 'implicit preferences' ratings given by
users to some products, in the form of (userID, productID, rating) pairs.
|
static MatrixFactorizationModel |
trainImplicit(RDD<Rating> ratings,
int rank,
int iterations,
double lambda,
double alpha)
Train a matrix factorization model given an RDD of 'implicit preferences' given by users to
some products, in the form of (userID, productID, preference) pairs.
|
static MatrixFactorizationModel |
trainImplicit(RDD<Rating> ratings,
int rank,
int iterations,
double lambda,
int blocks,
double alpha)
Train a matrix factorization model given an RDD of 'implicit preferences' given by users
to some products, in the form of (userID, productID, preference) pairs.
|
static MatrixFactorizationModel |
trainImplicit(RDD<Rating> ratings,
int rank,
int iterations,
double lambda,
int blocks,
double alpha,
long seed)
Train a matrix factorization model given an RDD of 'implicit preferences' given by users
to some products, in the form of (userID, productID, preference) pairs.
|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
initialized, initializeIfNecessary, initializeLogging, initLock, isTraceEnabled, log_, log, logDebug, logDebug, logError, logError, logInfo, logInfo, logTrace, logTrace, logWarning, logWarning
public ALS()
public static MatrixFactorizationModel train(RDD<Rating> ratings, int rank, int iterations, double lambda, int blocks, long seed)
blocks
.
ratings
- RDD of (userID, productID, rating) pairsrank
- number of features to useiterations
- number of iterations of ALS (recommended: 10-20)lambda
- regularization factor (recommended: 0.01)blocks
- level of parallelism to split computation intoseed
- random seedpublic static MatrixFactorizationModel train(RDD<Rating> ratings, int rank, int iterations, double lambda, int blocks)
blocks
.
ratings
- RDD of (userID, productID, rating) pairsrank
- number of features to useiterations
- number of iterations of ALS (recommended: 10-20)lambda
- regularization factor (recommended: 0.01)blocks
- level of parallelism to split computation intopublic static MatrixFactorizationModel train(RDD<Rating> ratings, int rank, int iterations, double lambda)
ratings
.
ratings
- RDD of (userID, productID, rating) pairsrank
- number of features to useiterations
- number of iterations of ALS (recommended: 10-20)lambda
- regularization factor (recommended: 0.01)public static MatrixFactorizationModel train(RDD<Rating> ratings, int rank, int iterations)
ratings
.
ratings
- RDD of (userID, productID, rating) pairsrank
- number of features to useiterations
- number of iterations of ALS (recommended: 10-20)public static MatrixFactorizationModel trainImplicit(RDD<Rating> ratings, int rank, int iterations, double lambda, int blocks, double alpha, long seed)
blocks
.
ratings
- RDD of (userID, productID, rating) pairsrank
- number of features to useiterations
- number of iterations of ALS (recommended: 10-20)lambda
- regularization factor (recommended: 0.01)blocks
- level of parallelism to split computation intoalpha
- confidence parameter (only applies when immplicitPrefs = true)seed
- random seedpublic static MatrixFactorizationModel trainImplicit(RDD<Rating> ratings, int rank, int iterations, double lambda, int blocks, double alpha)
blocks
.
ratings
- RDD of (userID, productID, rating) pairsrank
- number of features to useiterations
- number of iterations of ALS (recommended: 10-20)lambda
- regularization factor (recommended: 0.01)blocks
- level of parallelism to split computation intoalpha
- confidence parameter (only applies when immplicitPrefs = true)public static MatrixFactorizationModel trainImplicit(RDD<Rating> ratings, int rank, int iterations, double lambda, double alpha)
ratings
.
ratings
- RDD of (userID, productID, rating) pairsrank
- number of features to useiterations
- number of iterations of ALS (recommended: 10-20)lambda
- regularization factor (recommended: 0.01)public static MatrixFactorizationModel trainImplicit(RDD<Rating> ratings, int rank, int iterations)
ratings
.
Model parameters alpha
and lambda
are set to reasonable default values
ratings
- RDD of (userID, productID, rating) pairsrank
- number of features to useiterations
- number of iterations of ALS (recommended: 10-20)public ALS setBlocks(int numBlocks)
public ALS setRank(int rank)
public ALS setIterations(int iterations)
public ALS setLambda(double lambda)
public ALS setImplicitPrefs(boolean implicitPrefs)
public ALS setAlpha(double alpha)
public ALS setSeed(long seed)
public MatrixFactorizationModel run(RDD<Rating> ratings)