You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by "Till Rohrmann (JIRA)" <ji...@apache.org> on 2015/06/26 12:34:04 UTC

[jira] [Assigned] (FLINK-2278) SparseVector created from Breeze Sparsevector has wrong size

     [ https://issues.apache.org/jira/browse/FLINK-2278?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Till Rohrmann reassigned FLINK-2278:
------------------------------------

    Assignee: Till Rohrmann

> SparseVector created from Breeze Sparsevector has wrong size
> ------------------------------------------------------------
>
>                 Key: FLINK-2278
>                 URL: https://issues.apache.org/jira/browse/FLINK-2278
>             Project: Flink
>          Issue Type: Bug
>            Reporter: Christoph Alt
>            Assignee: Till Rohrmann
>              Labels: ML
>
> The following code doesn't return true when testing equality of two SparseVectors, one converted from a Breeze SparseVector.
> {code}
> val flinkVector = SparseVector.fromCOO(3, (1, 1.0), (2, 2.0))
> val breezeVector = linalg.SparseVector(3)(1 -> 1.0, 2 -> 2.0)
> flinkVector.equalsVector(breezeVector.fromBreeze)
> {code}
> The reason is that *fromBreeze* takes the number of non-zero elements *SparseVector.used* as size when creating a SparseVector instead of the dimensionality *SparseVector.length*.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)