当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python mxnet.ndarray.NDArray.astype用法及代码示例


用法:

astype(dtype, copy=True)

参数

  • dtype(numpy.dtype or str) - 返回数组的类型。
  • copy(bool) - 默认True.默认情况下, astype 总是在相同的上下文中返回一个新分配的 ndarray。如果设置为False,并且请求的 dtype 与 ndarray 的 dtype 相同,则返回 ndarray 而不是副本。

返回

转换为指定类型后复制的数组,如果 copy=False 且 dtype 与输入数组相同,则为相同的数组。

返回类型

NDArrayCSRNDArrayRowSparseNDArray

转换为指定类型后返回数组的副本。

例子

>>> x = mx.nd.zeros((2,3), dtype='float32')
>>> y = x.astype('int32')
>>> y.dtype
<type 'numpy.int32'>

相关用法


注:本文由纯净天空筛选整理自apache.org大神的英文原创作品 mxnet.ndarray.NDArray.astype。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。