Repository: incubator-spark Updated Branches: refs/heads/master 7b012c939 -> f9b7d64a4
MLLIB-24: url of "Collaborative Filtering for Implicit Feedback Datasets" in ALS is invalid now url of "Collaborative Filtering for Implicit Feedback Datasets" is invalid now. A new url is provided. http://research.yahoo.com/files/HuKorenVolinsky-ICDM08.pdf Author: Chen Chao <crazy...@gmail.com> Closes #619 from CrazyJvm/master and squashes the following commits: a0b54e4 [Chen Chao] change url to IEEE 9e0e9f0 [Chen Chao] correct spell mistale fcfab5d [Chen Chao] wrap line to to fit within 100 chars 590d56e [Chen Chao] url error Project: http://git-wip-us.apache.org/repos/asf/incubator-spark/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-spark/commit/f9b7d64a Tree: http://git-wip-us.apache.org/repos/asf/incubator-spark/tree/f9b7d64a Diff: http://git-wip-us.apache.org/repos/asf/incubator-spark/diff/f9b7d64a Branch: refs/heads/master Commit: f9b7d64a4e7dd03be672728335cb72df4be5dbf6 Parents: 7b012c9 Author: Chen Chao <crazy...@gmail.com> Authored: Wed Feb 19 22:06:35 2014 -0800 Committer: Reynold Xin <r...@apache.org> Committed: Wed Feb 19 22:06:35 2014 -0800 ---------------------------------------------------------------------- .../src/main/scala/org/apache/spark/mllib/recommendation/ALS.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-spark/blob/f9b7d64a/mllib/src/main/scala/org/apache/spark/mllib/recommendation/ALS.scala ---------------------------------------------------------------------- diff --git a/mllib/src/main/scala/org/apache/spark/mllib/recommendation/ALS.scala b/mllib/src/main/scala/org/apache/spark/mllib/recommendation/ALS.scala index a990e0f..a566464 100644 --- a/mllib/src/main/scala/org/apache/spark/mllib/recommendation/ALS.scala +++ b/mllib/src/main/scala/org/apache/spark/mllib/recommendation/ALS.scala @@ -81,7 +81,7 @@ case class Rating(val user: Int, val product: Int, val rating: Double) * * For implicit preference data, the algorithm used is based on * "Collaborative Filtering for Implicit Feedback Datasets", available at - * [[http://research.yahoo.com/pub/2433]], adapted for the blocked approach used here. + * [[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