HomeSort by relevance Sort by last modified time
    Searched refs:clean_stop_exception_types (Results 1 - 4 of 4) sorted by null

  /external/tensorflow/tensorflow/python/training/
coordinator.py 130 def __init__(self, clean_stop_exception_types=None):
134 clean_stop_exception_types: Optional tuple of Exception types that should
142 if clean_stop_exception_types is None:
143 clean_stop_exception_types = (errors.OutOfRangeError,)
144 self._clean_stop_exception_types = tuple(clean_stop_exception_types)
coordinator_test.py 235 coord = coordinator.Coordinator(clean_stop_exception_types=(ValueError,))
monitored_session.py 677 self.coord = coordinator.Coordinator(clean_stop_exception_types=[])
    [all...]
monitored_session_test.py 517 coord = coordinator.Coordinator(clean_stop_exception_types=())
    [all...]

Completed in 4549 milliseconds