用法:
astype(dtype, copy=True)
- dtype:(
numpy.dtype
or
str
) - 返回数组的类型。 - copy:(
bool
) - 默认True
.默认情况下, astype 总是在相同的上下文中返回一个新分配的 ndarray。如果设置为False
,并且请求的 dtype 与 ndarray 的 dtype 相同,则返回 ndarray 而不是副本。
- dtype:(
参数:
转换为指定类型后返回数组的副本。
例子:
>>> x = mx.nd.sparse.zeros('row_sparse', (2,3), dtype='float32') >>> y = x.astype('int32') >>> y.dtype <type 'numpy.int32'>
相关用法
- Python mxnet.ndarray.sparse.BaseSparseNDArray.reshape用法及代码示例
- Python mxnet.ndarray.sparse.BaseSparseNDArray.size用法及代码示例
- Python mxnet.ndarray.sparse.trunc用法及代码示例
- Python mxnet.ndarray.sparse.row_sparse_array用法及代码示例
- Python mxnet.ndarray.sparse.broadcast_mul用法及代码示例
- Python mxnet.ndarray.sparse.rsqrt用法及代码示例
- Python mxnet.ndarray.sparse.sgd_update用法及代码示例
- Python mxnet.ndarray.sparse.broadcast_plus用法及代码示例
- Python mxnet.ndarray.sparse.rint用法及代码示例
- Python mxnet.ndarray.sparse.RowSparseNDArray用法及代码示例
- Python mxnet.ndarray.sparse.sign用法及代码示例
- Python mxnet.ndarray.sparse.concat用法及代码示例
- Python mxnet.ndarray.sparse.make_loss用法及代码示例
- Python mxnet.ndarray.sparse.adagrad_update用法及代码示例
- Python mxnet.ndarray.sparse.exp用法及代码示例
- Python mxnet.ndarray.sparse.square用法及代码示例
- Python mxnet.ndarray.sparse.clip用法及代码示例
- Python mxnet.ndarray.sparse.retain用法及代码示例
- Python mxnet.ndarray.sparse.round用法及代码示例
- Python mxnet.ndarray.sparse.zeros_like用法及代码示例
注:本文由纯净天空筛选整理自apache.org大神的英文原创作品 mxnet.ndarray.sparse.BaseSparseNDArray.astype。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。