Github user mpjlu commented on a diff in the pull request:
https://github.com/apache/spark/pull/14785#discussion_r76035442
--- Diff:
mllib/src/test/scala/org/apache/spark/mllib/util/TestingUtils.scala ---
@@ -154,7 +154,11 @@ object TestingUtils {
*/
def absTol(eps: Double): CompareVectorRightSide =
CompareVectorRightSide(
(x: Vector, y: Vector, eps: Double) => {
- x.toArray.zip(y.toArray).forall(x => x._1 ~= x._2 absTol eps)
+ if (x.size != y.size) {
--- End diff --
Yes, thanks.
How about check matrix length by
x.numRows == y.numRows && x.numCols == y.numCols && ... ?
---
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 [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]