org.apache.spark.mllib.recommendation
:: DeveloperApi :: Predict the rating of many users for many products.
:: DeveloperApi :: Predict the rating of many users for many products. This is a Java stub for python predictAll()
A JavaRDD with serialized tuples (user, product)
JavaRDD of serialized Rating objects.
Predict the rating of many users for many products.
Predict the rating of many users for many products. The output RDD has an element per each element in the input RDD (including all duplicates) unless a user or product is missing in the training set.
RDD of (user, product) pairs.
RDD of Ratings.
Predict the rating of one user for one product.
RDD of tuples where each tuple represents the productId and the features computed for this product.
Rank for the features in this model.
Recommends products to a user.
Recommends products to a user.
the user to recommend products to
how many products to return. The number returned may be less than this.
Rating objects, each of which contains the given user ID, a product ID, and a "score" in the rating field. Each represents one recommended product, and they are sorted by score, decreasing. The first returned is the one predicted to be most strongly recommended to the user. The score is an opaque value that indicates how strongly recommended the product is.
Recommends users to a product.
Recommends users to a product. That is, this returns users who are most likely to be interested in a product.
the product to recommend users to
how many users to return. The number returned may be less than this.
Rating objects, each of which contains a user ID, the given product ID, and a "score" in the rating field. Each represents one recommended user, and they are sorted by score, decreasing. The first returned is the one predicted to be most strongly recommended to the product. The score is an opaque value that indicates how strongly recommended the user is.
RDD of tuples where each tuple represents the userId and the features computed for this user.
Model representing the result of matrix factorization.