ml_als
Spark ML -- ALS
Perform recommendation using Alternating Least Squares (ALS) matrix factorization.
Usage
ml_als(x, rating_col = "rating", user_col = "user", item_col = "item",
rank = 10L, reg_param = 0.1, implicit_prefs = FALSE, alpha = 1,
nonnegative = FALSE, max_iter = 10L, num_user_blocks = 10L,
num_item_blocks = 10L, checkpoint_interval = 10L,
cold_start_strategy = "nan",
intermediate_storage_level = "MEMORY_AND_DISK",
final_storage_level = "MEMORY_AND_DISK", uid = random_string("als_"), ...)ml_recommend(model, type = c("items", "users"), n = 1)
ml_als_factorization(x, rating_col = "rating", user_col = "user",
item_col = "item", rank = 10L, reg_param = 0.1,
implicit_prefs = FALSE, alpha = 1, nonnegative = FALSE,
max_iter = 10L, num_user_blocks = 10L, num_item_blocks = 10L,
checkpoint_interval = 10L, cold_start_strategy = "nan",
intermediate_storage_level = "MEMORY_AND_DISK",
final_storage_level = "MEMORY_AND_DISK", uid = random_string("als_"), ...)
Arguments
- x
A
spark_connection
,ml_pipeline
, or atbl_spark
.- rating_col
Column name for ratings. Default: "rating"
- user_col
Column name for user ids. Ids must be integers. Other numeric types are supported for this column, but will be cast to integers as long as they fall within the integer value range. Default: "user"
- item_col
Column name for item ids. Ids must be integers. Other numeric types are supported for this column, but will be cast to integers as long as they fall within the integer value range. Default: "item"
- rank
Rank of the matrix factorization (positive). Default: 10
- reg_param
Regularization parameter.
- implicit_prefs
Whether to use implicit preference. Default: FALSE.
- alpha
Alpha parameter in the implicit preference formulation (nonnegative).
- nonnegative
Whether to apply nonnegativity constraints. Default: FALSE.
- max_iter
Maximum number of iterations.
- num_user_blocks
Number of user blocks (positive). Default: 10
- num_item_blocks
Number of item blocks (positive). Default: 10
- checkpoint_interval
Set checkpoint interval (>= 1) or disable checkpoint (-1). E.g. 10 means that the cache will get checkpointed every 10 iterations, defaults to 10.
- cold_start_strategy
(Spark 2.2.0+) Strategy for dealing with unknown or new users/items at prediction time. This may be useful in cross-validation or production scenarios, for handling user/item ids the model has not seen in the training data. Supported values: - "nan": predicted value for unknown ids will be NaN. - "drop": rows in the input DataFrame containing unknown ids will be dropped from the output DataFrame containing predictions. Default: "nan".
- intermediate_storage_level
(Spark 2.0.0+) StorageLevel for intermediate datasets. Pass in a string representation of
StorageLevel
. Cannot be "NONE". Default: "MEMORY_AND_DISK".- final_storage_level
(Spark 2.0.0+) StorageLevel for ALS model factors. Pass in a string representation of
StorageLevel
. Default: "MEMORY_AND_DISK".- uid
A character string used to uniquely identify the ML estimator.
- ...
Optional arguments; currently unused.
- model
An ALS model object
- type
What to recommend, one of
items
orusers
- n
Maximum number of recommendations to return
Details
ml_recommend()
returns the top n
users/items recommended for each item/user, for all items/users. The output has been transformed (exploded and separated) from the default Spark outputs to be more user friendly.
ml_als_factorization()
is an alias for ml_als()
for backwards compatibility.
Value
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 pre-computing 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 is greater than 0 and 0 if r is less than or equal to 0. The ratings then act as 'confidence' values related to strength of indicated user preferences rather than explicit ratings given to items.
The object returned depends on the class of x
.
spark_connection
: Whenx
is aspark_connection
, the function returns an instance of aml_als
recommender object, which is an Estimator.ml_pipeline
: Whenx
is aml_pipeline
, the function returns aml_pipeline
with the recommender appended to the pipeline.tbl_spark
: Whenx
is atbl_spark
, a recommender estimator is constructed then immediately fit with the inputtbl_spark
, returning a recommendation model, i.e.ml_als_model
.