We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 206a023 commit 8eab55bCopy full SHA for 8eab55b
mllib/src/main/scala/org/apache/spark/mllib/recommendation/MatrixFactorizationModel.scala
@@ -280,7 +280,7 @@ object MatrixFactorizationModel extends Loader[MatrixFactorizationModel] {
280
/**
281
* Use dot to replace blas 3 gemm is the key approach to improve efficiency.
282
* By this change, we can get the topK elements of each block to reduce the GC time.
283
- * Comparing with BLAS.dot, hand writing dot is high efficiency.
+ * Comparing with BLAS.dot, hand-written dot is high efficiency.
284
*/
285
val ratings = srcBlocks.cartesian(dstBlocks).flatMap { case (srcIter, dstIter) =>
286
val m = srcIter.size
0 commit comments