Re: [EXTERNAL] - Re: Spark ML / ALS question

2020-12-03 Thread Steve Pruitt
teve Pruitt Cc: user@spark.apache.org Subject: [EXTERNAL] - Re: Spark ML / ALS question There is only a fit() method in spark.ml<https://urldefense.com/v3/__http://spark.ml__;!!Obbck6kTJA!LtadpPpSINZQ3q4vJOXQw0UmOzZShpk98OlNRZWI2LNAXfqDlnNvNbbKRr3kOTt7$>'s ALS http://spark.apache.org

Re: Spark ML / ALS question

2020-12-02 Thread Sean Owen
There is only a fit() method in spark.ml's ALS http://spark.apache.org/docs/latest/api/scala/org/apache/spark/ml/recommendation/ALS.html The older spark.mllib interface has a train() method. You'd generally use the spark.ml version. On Wed, Dec 2, 2020 at 2:13 PM Steve Pruitt wrote: > I am havi