断言给定的Tensor
是指定的类型。
用法
tf.debugging.assert_type(
tensor, tf_type, message=None, name=None
)
参数
-
tensor
Tensor
,SparseTensor
或tf.Variable .
-
tf_type
张量流类型(dtypes.float32,tf.int64,dtypes.bool, 等等)。
-
message
默认消息的前缀字符串。
-
name
此操作的名称。默认为"assert_type"
抛出
-
TypeError
如果张量的数据类型与tf_type
不匹配。
这始终可以静态检查,因此此方法不返回任何内容。
例子:
a = tf.Variable(1.0)
tf.debugging.assert_type(a, tf_type= tf.float32)
b = tf.constant(21)
tf.debugging.assert_type(b, tf_type=tf.bool)
Traceback (most recent call last):
TypeError:...
c = tf.SparseTensor(indices=[[0, 0], [1, 2]], values=[1, 2],
dense_shape=[3, 4])
tf.debugging.assert_type(c, tf_type= tf.int32)
相关用法
- Python tf.debugging.assert_shapes用法及代码示例
- Python tf.debugging.enable_check_numerics用法及代码示例
- Python tf.debugging.check_numerics用法及代码示例
- Python tf.debugging.experimental.enable_dump_debug_info用法及代码示例
- Python tf.debugging.Assert用法及代码示例
- Python tf.debugging.set_log_device_placement用法及代码示例
- Python tf.device用法及代码示例
- 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用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.debugging.assert_type。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。