mxnet.ndarray.sparse.RowSparseNDArray.dtype¶
-
RowSparseNDArray.
dtype
¶ Data-type of the array’s elements.
- Returns
This NDArray’s data type.
- Return type
numpy.dtype
Examples
>>> x = mx.nd.zeros((2,3)) >>> x.dtype <type 'numpy.float32'> >>> y = mx.nd.zeros((2,3), dtype='int32') >>> y.dtype <type 'numpy.int32'>