断言给定条件为真。
用法
tf.debugging.Assert(
condition, data, summarize=None, name=None
)
参数
-
condition
要评估的条件。 -
data
当条件为假时要打印的张量。 -
summarize
打印每个张量的这么多条目。 -
name
此操作的名称(可选)。
返回
-
assert_op
一个Operation
,在执行时,如果condition
不为真,则引发tf.errors.InvalidArgumentError
。
抛出
如果 condition
评估为 false,则在 data
中打印张量列表。 summarize
确定要打印的张量条目数。
注意:应该使用这个函数的输出。如果不是,则会记录警告或引发错误。要将输出标记为已使用,请调用其 .mark_used() 方法。
TF1 兼容性
当处于 TF V1 模式时(即在 tf.function
之外),断言需要对输出的控制依赖以确保断言执行:
# Ensure maximum element of x is smaller or equal to 1
assert_op = tf.Assert(tf.less_equal(tf.reduce_max(x), 1.), [x])
with tf.control_dependencies([assert_op]):
... code using x ...
eager模式兼容性
返回None。
相关用法
- Python tf.debugging.enable_check_numerics用法及代码示例
- Python tf.debugging.assert_type用法及代码示例
- Python tf.debugging.check_numerics用法及代码示例
- Python tf.debugging.experimental.enable_dump_debug_info用法及代码示例
- Python tf.debugging.set_log_device_placement用法及代码示例
- Python tf.debugging.assert_shapes用法及代码示例
- 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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。