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


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


用法:

property dtype

返回

此 NDArray 的数据类型。

返回类型

numpy.dtype

数组元素的数据类型。

例子

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

相关用法


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