当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python tf.train.Coordinator.stop_on_exception用法及代码示例


用法

@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())

相关用法


注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.train.Coordinator.stop_on_exception。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。