Skip to content

Commit f27441a

Browse files
CrazyJvmmengxr
authored andcommitted
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 <crazyjvm@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
1 parent a26ac90 commit f27441a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • mllib/src/main/scala/org/apache/spark/mllib/recommendation

mllib/src/main/scala/org/apache/spark/mllib/recommendation/ALS.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ case class Rating(val user: Int, val product: Int, val rating: Double)
8181
*
8282
* For implicit preference data, the algorithm used is based on
8383
* "Collaborative Filtering for Implicit Feedback Datasets", available at
84-
* [[http://research.yahoo.com/pub/2433]], adapted for the blocked approach used here.
84+
* [[http://dx.doi.org/10.1109/ICDM.2008.22]], adapted for the blocked approach used here.
8585
*
8686
* Essentially instead of finding the low-rank approximations to the rating matrix `R`,
8787
* this finds the approximations for a preference matrix `P` where the elements of `P` are 1 if r > 0

0 commit comments

Comments
 (0)