信息(类型)
用法
tf.experimental.numpy.iinfo(
int_type
)
属性
-
max
给定 dtype 的最大值。 -
min
给定 dtype 的最小值。
整数类型的机器限制。
属性
bits:int 类型占用的位数。 min:int 类型可表达的最小整数。 max:int 类型可表达的最大整数。
参数
int_type:integer type, dtype, or instance 要获取信息的整数数据类型的种类。
也可以看看
finfo:浮点数据类型的等价物。
例子
有类型:
ii16 = np.iinfo(np.int16)
ii16.min
-32768
ii16.max
32767
ii32 = np.iinfo(np.int32)
ii32.min
-2147483648
ii32.max
2147483647
有实例:
ii32 = np.iinfo(np.int32(10))
ii32.min
-2147483648
ii32.max
2147483647
相关用法
- Python tf.experimental.numpy.issubdtype用法及代码示例
- Python tf.experimental.numpy.unicode_用法及代码示例
- Python tf.experimental.numpy.float16.as_integer_ratio用法及代码示例
- Python tf.experimental.numpy.float64.as_integer_ratio用法及代码示例
- Python tf.experimental.numpy.float32.as_integer_ratio用法及代码示例
- Python tf.experimental.dlpack.from_dlpack用法及代码示例
- Python tf.experimental.Optional.has_value用法及代码示例
- Python tf.experimental.dispatch_for_unary_elementwise_apis用法及代码示例
- Python tf.experimental.dispatch_for_api用法及代码示例
- Python tf.experimental.unregister_dispatch_for用法及代码示例
- Python tf.experimental.tensorrt.Converter用法及代码示例
- Python tf.experimental.ExtensionType用法及代码示例
- Python tf.experimental.Optional.get_value用法及代码示例
- Python tf.experimental.dlpack.to_dlpack用法及代码示例
- Python tf.experimental.async_scope用法及代码示例
- Python tf.experimental.Optional.empty用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.experimental.numpy.iinfo。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。