表示 Tensor
中元素的类型。
用法
tf.dtypes.DType()
属性
-
as_datatype_enum
根据此数据类型返回types_pb2.DataType
枚举值。 -
as_numpy_dtype
基于此DType
返回 Pythontype
对象。 -
base_dtype
基于此DType
返回非引用DType
。 -
is_bool
返回这是否是布尔数据类型。 -
is_complex
返回这是否是复杂的浮点类型。 -
is_floating
返回这是否是(非量化的、实数的)浮点类型。 -
is_integer
返回这是否是(非量化的)整数类型。 -
is_numpy_compatible
返回此数据类型是否具有兼容的 NumPy 数据类型。 -
is_quantized
返回这是否是量化数据类型。 -
is_unsigned
返回此类型是否是无符号的。非数字、无序和量化类型不被视为无符号,此函数返回
False
。 -
limits
返回强度限制,即(min, max) 元组,dtype。 Args:clip_negative:bool,可选如果为真,即使图像 dtype 允许负值,也裁剪负范围(即返回 0 表示最小强度)。返回 min, max:tuple 强度下限和上限。
-
max
返回此数据类型中的最大可表示值。 -
min
返回此数据类型中的最小可表示值。 -
name
-
real_dtype
返回与此DType
的实部对应的DType
。 -
size
DType
用于为需要它的操作指定输出数据类型,或检查现有 Tensor
的数据类型。
例子:
tf.constant(1, dtype=tf.int64)
<tf.Tensor:shape=(), dtype=int64, numpy=1>
tf.constant(1.0).dtype
tf.float32
有关已定义的 DType
的完整列表,请参见 tf.dtypes
。
相关用法
- Python tf.dtypes.DType.is_compatible_with用法及代码示例
- Python tf.dtypes.complex用法及代码示例
- Python tf.distribute.OneDeviceStrategy.experimental_distribute_values_from_function用法及代码示例
- Python tf.data.Dataset.take_while用法及代码示例
- Python tf.data.experimental.RandomDataset.group_by_window用法及代码示例
- Python tf.data.TFRecordDataset.filter用法及代码示例
- Python tf.data.TextLineDataset.reduce用法及代码示例
- Python tf.data.TextLineDataset.with_options用法及代码示例
- Python tf.data.experimental.SqlDataset.enumerate用法及代码示例
- Python tf.data.TextLineDataset.as_numpy_iterator用法及代码示例
- Python tf.data.experimental.make_saveable_from_iterator用法及代码示例
- Python tf.distribute.TPUStrategy用法及代码示例
- Python tf.data.TextLineDataset.random用法及代码示例
- Python tf.data.FixedLengthRecordDataset.repeat用法及代码示例
- Python tf.data.TFRecordDataset.random用法及代码示例
- Python tf.data.Dataset.cardinality用法及代码示例
- Python tf.distribute.experimental_set_strategy用法及代码示例
- Python tf.data.FixedLengthRecordDataset.cardinality用法及代码示例
- Python tf.distribute.experimental.MultiWorkerMirroredStrategy.gather用法及代码示例
- Python tf.distribute.cluster_resolver.TFConfigClusterResolver用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.dtypes.DType。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。