用法
@contextlib.contextmanager
stop_on_exception()
生成(Yield)
- 没有。
引发异常时请求停止的上下文管理器。
使用协调器的代码必须捕获异常并将它们传递给 request_stop()
方法以停止由协调器管理的其他线程。
此上下文处理程序简化了异常处理。按如下方式使用它:
with coord.stop_on_exception():
# Any exception raised in the body of the with
# clause is reported to the coordinator before terminating
# the execution of the body.
...body...
这完全等同于稍长的代码:
try:
...body...
except:
coord.request_stop(sys.exc_info())
相关用法
- Python tf.train.Coordinator用法及代码示例
- Python tf.train.Checkpoint.restore用法及代码示例
- Python tf.train.Checkpoint.read用法及代码示例
- Python tf.train.CheckpointOptions用法及代码示例
- Python tf.train.ClusterSpec用法及代码示例
- Python tf.train.Checkpoint.save用法及代码示例
- Python tf.train.Checkpoint.write用法及代码示例
- Python tf.train.CheckpointManager用法及代码示例
- Python tf.train.Checkpoint用法及代码示例
- Python tf.train.ExponentialMovingAverage用法及代码示例
- Python tf.train.list_variables用法及代码示例
- Python tf.transpose用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.train.Coordinator.stop_on_exception。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。