mxnet.ndarray.sparse.CSRNDArray.asscipy¶
-
CSRNDArray.
asscipy
()[source]¶ Returns a
scipy.sparse.csr.csr_matrix
object with value copied from this arrayExamples
>>> x = mx.nd.sparse.zeros('csr', (2,3)) >>> y = x.asscipy() >>> type(y) <type 'scipy.sparse.csr.csr_matrix'> >>> y <2x3 sparse matrix of type '<type 'numpy.float32'>' with 0 stored elements in Compressed Sparse Row format>