Created on 07-03-2014 01:00 AM - edited 09-16-2022 02:01 AM
Thanks.
How to calculate the similarity of the movies in Spark MLlib, like mahout's org.apache.mahout.cf.taste.hadoop.similarity.item.ItemSimilityJob?
Created 07-03-2014 03:08 AM
There is no equivalent; Spark MLlib has just the bare bones of model building algorithms. You would write it yourself. It would not be too much Spark code to write though. Although calculating all-pairs is always potentially too huge to contemplate.
Created 07-03-2014 03:08 AM
There is no equivalent; Spark MLlib has just the bare bones of model building algorithms. You would write it yourself. It would not be too much Spark code to write though. Although calculating all-pairs is always potentially too huge to contemplate.
Created on 07-03-2014 03:56 AM - edited 07-03-2014 03:57 AM
Thanks maestro.