You can use one of ML implementations which support Long
labels. RDD
version it is significantly less user friendly compared to other implementations:
import org.apache.spark.ml.recommendation.ALS
import org.apache.spark.ml.recommendation.ALS.Rating
val ratings = sc.parallelize(Seq(Rating(1L, 2L, 3.0f), Rating(2L, 3L, 5.0f)))
val (userFactors, itemFactors) = ALS.train(ratings)
and returns only factors but DataFrame
version returns a model:
val ratingsDF= ratings.toDF
val alsModel = new ALS().fit(ratingsDF)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…