Home
last modified time | relevance | path

Searched refs:should_checkpoint (Results 1 – 15 of 15) sorted by relevance

/external/tensorflow/tensorflow/python/keras/distribute/
Ddistributed_file_utils.py92 if strategy.extended.should_checkpoint:
116 not strategy.extended.should_checkpoint):
Dworker_training_state.py79 if self._model.distribute_strategy.extended.should_checkpoint:
Ddistribute_coordinator_utils.py277 def should_checkpoint(self): member in _WorkerContext
279 return self._strategy.extended.should_checkpoint
/external/tensorflow/tensorflow/python/distribute/
Ddistribute_coordinator_test.py79 should_checkpoint=None, argument
83 self.should_checkpoint = should_checkpoint
92 should_checkpoint=None, argument
94 self.extended = MockExtended(between_graph, should_init, should_checkpoint,
107 if self.extended.should_checkpoint is None:
109 self.extended.should_checkpoint = True
111 self.extended.should_checkpoint = False
378 self.assertEqual(context.should_checkpoint,
379 strategy.extended.should_checkpoint)
392 context.should_checkpoint,
Dmulti_worker_util.py279 return dc_context.get_current_worker_context().should_checkpoint
Ddistribute_coordinator.py312 def should_checkpoint(self): member in _WorkerContext
314 return self._strategy.extended.should_checkpoint
Done_device_strategy.py457 def should_checkpoint(self): member in OneDeviceExtended
Dparameter_server_strategy.py669 def should_checkpoint(self): member in ParameterServerStrategyExtended
Ddistribute_lib.py2981 def should_checkpoint(self): member in StrategyExtendedV1
3750 def should_checkpoint(self): member in _DefaultDistributionExtended
Dcollective_all_reduce_strategy.py962 def should_checkpoint(self): member in CollectiveAllReduceExtended
Dmirrored_strategy.py875 def should_checkpoint(self): member in MirroredExtended
Dtpu_strategy.py1497 def should_checkpoint(self): member in TPUExtended
/external/tensorflow/tensorflow/tools/api/golden/v1/
Dtensorflow.distribute.-strategy-extended.pbtxt23 name: "should_checkpoint"
/external/tensorflow/tensorflow/python/training/
Dmonitored_session_test.py472 def __init__(self, between_graph, should_init, should_checkpoint, argument
476 self.should_checkpoint = should_checkpoint
485 should_checkpoint=None, argument
487 self.extended = MockExtended(between_graph, should_init, should_checkpoint,
537 MockStrategy(should_checkpoint=True), None, None, None)
557 MockStrategy(should_checkpoint=False), None, None, None)
Dmonitored_session.py398 if worker_context.should_checkpoint: