Hi,
I was surprised to find the ``order`` option for checks of
sparse matrices.
----
223 order : 'F', 'C' or None
(default=None)$
224 Whether an array will be forced to be fortran or c-style.
--
in a few function.
See for example:
utils/validation.py/_ensure_sparse_format
--- line 263 ---
if hasattr(spmatrix, "data"):
spmatrix.data = np.array(spmatrix.data, copy=False, order=order)
---
The functions ensures that the data array of the sparse matrix
conforms to the order specified.
I this really necessary? It looks to me that the ``data``` is always
1 dimensional and F/C order is therefore meaningless.
Best,
Immanuel
------------------------------------------------------------------------------
BPM Camp - Free Virtual Workshop May 6th at 10am PDT/1PM EDT
Develop your own process in accordance with the BPMN 2 standard
Learn Process modeling best practices with Bonita BPM through live exercises
http://www.bonitasoft.com/be-part-of-it/events/bpm-camp-virtual- event?utm_
source=Sourceforge_BPM_Camp_5_6_15&utm_medium=email&utm_campaign=VA_SF
_______________________________________________
Scikit-learn-general mailing list
Scikit-learn-general@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/scikit-learn-general