Github user thvasilo commented on a diff in the pull request: https://github.com/apache/flink/pull/2542#discussion_r81159171 --- Diff: flink-libraries/flink-ml/src/main/scala/org/apache/flink/ml/recommendation/ALS.scala --- @@ -581,6 +637,16 @@ object ALS { val userXy = new ArrayBuffer[Array[Double]]() val numRatings = new ArrayBuffer[Int]() + var precomputedXtX: Array[Double] = null + + override def open(config: Configuration): Unit = { + // retrieve broadcasted precomputed XtX if using implicit feedback + if (implicitPrefs) { + precomputedXtX = getRuntimeContext.getBroadcastVariable[Array[Double]]("XtX") + .iterator().next() + } + } + override def coGroup(left: lang.Iterable[(Int, Int, Array[Array[Double]])], --- End diff -- We can ping @tillrohrmann here, as the original author maybe he has some input.
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---