Skip to content
Snippets Groups Projects
Commit 931e4c96 authored by Matei Zaharia's avatar Matei Zaharia
Browse files

Fix a comment

parent c5c38d19
No related branches found
No related tags found
No related merge requests found
...@@ -161,7 +161,7 @@ class ALS private (var numBlocks: Int, var rank: Int, var iterations: Int, var l ...@@ -161,7 +161,7 @@ class ALS private (var numBlocks: Int, var rank: Int, var iterations: Int, var l
for (productBlock <- 0 until numBlocks) { for (productBlock <- 0 until numBlocks) {
// Create an array of (product, Seq(Rating)) ratings // Create an array of (product, Seq(Rating)) ratings
val groupedRatings = blockRatings(productBlock).groupBy(_.product).toArray val groupedRatings = blockRatings(productBlock).groupBy(_.product).toArray
// Sort them by user ID // Sort them by product ID
val ordering = new Ordering[(Int, ArrayBuffer[Rating])] { val ordering = new Ordering[(Int, ArrayBuffer[Rating])] {
def compare(a: (Int, ArrayBuffer[Rating]), b: (Int, ArrayBuffer[Rating])): Int = a._1 - b._1 def compare(a: (Int, ArrayBuffer[Rating]), b: (Int, ArrayBuffer[Rating])): Int = a._1 - b._1
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment