File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
mllib/src/main/scala/org/apache/spark/ml/recommendation Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -976,12 +976,12 @@ object ALS extends DefaultParamsReadable[ALS] with Logging {
976976 * In summary, the data structure encodes the following information:
977977 *
978978 * * There are ratings with user IDs 0 and 6 (encoded in `Array(0, 1)`, where 0 and 1 are the
979- * indices of the user IDs 0 and 6 on partition 0) whose item IDs map to partitions 0 and 1
980- * (represented by the fact that `Array(0, 1)` appears in both the 0th and 1st positions).
979+ * indices of the user IDs 0 and 6 on partition 0) whose item IDs map to partitions 0 and 1
980+ * (represented by the fact that `Array(0, 1)` appears in both the 0th and 1st positions).
981981 *
982982 * * There are ratings with user ID 3 (encoded in `Array(0)`, where 0 is the index of the user
983- * ID 3 on partition 1) whose item IDs map to partitions 0 and 1 (represented by the fact
984- * that `Array(0)` appears in both the 0th and 1st positions).
983+ * ID 3 on partition 1) whose item IDs map to partitions 0 and 1 (represented by the fact that
984+ * `Array(0)` appears in both the 0th and 1st positions).
985985 */
986986 private type OutBlock = Array [Array [Int ]]
987987
You can’t perform that action at this time.
0 commit comments