You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@mahout.apache.org by "Dmitriy Lyubimov (JIRA)" <ji...@apache.org> on 2015/06/17 21:00:01 UTC

[jira] [Resolved] (MAHOUT-1729) Straighten out behavior of Matrix.iterator() and iterateNonEmpty()

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

Dmitriy Lyubimov resolved MAHOUT-1729.
--------------------------------------
    Resolution: Fixed

> Straighten out behavior of Matrix.iterator() and iterateNonEmpty()
> ------------------------------------------------------------------
>
>                 Key: MAHOUT-1729
>                 URL: https://issues.apache.org/jira/browse/MAHOUT-1729
>             Project: Mahout
>          Issue Type: Bug
>            Reporter: Dmitriy Lyubimov
>            Assignee: Dmitriy Lyubimov
>             Fix For: 0.10.2
>
>
> SparseMatrix in particular does iterateNonEmpty() instead of iterating over all rows in default iterator. This creates contract inconsistency leading to computational errors.
> so... this fixes to guarantee that 
> for (row <- mxA)  
> visits ALL rows in the mxA (even if they are totally empty). 
> If it is ok not to process completely 0ed rows, then the following form should be used: 
> for (row <- mxA.iterateNonEmpty) ... 
> PR https://github.com/apache/mahout/pull/135



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