Searched refs:_call_batch_hook (Results 1 – 4 of 4) sorted by relevance
/external/tensorflow/tensorflow/python/keras/engine/ |
D | training_distributed.py | 390 callbacks._call_batch_hook(mode, 'begin', step_index, batch_logs) 412 callbacks._call_batch_hook(mode, 'end', step_index, batch_logs) 534 callbacks._call_batch_hook(mode, 'begin', current_step, batch_logs) 557 callbacks._call_batch_hook(mode, 'end', current_step, batch_logs) 680 callbacks._call_batch_hook(mode, 'begin', current_step, batch_logs) 698 callbacks._call_batch_hook(mode, 'end', current_step, batch_logs)
|
D | training_arrays.py | 256 callbacks._call_batch_hook(mode, 'begin', step, batch_logs) 311 callbacks._call_batch_hook(mode, 'end', step, batch_logs) 348 callbacks._call_batch_hook(mode, 'begin', batch_index, batch_logs) 363 callbacks._call_batch_hook(mode, 'end', batch_index, batch_logs)
|
D | training_generator.py | 253 callbacks._call_batch_hook(mode, 'begin', step, batch_logs) 286 callbacks._call_batch_hook(mode, 'end', step, batch_logs)
|
/external/tensorflow/tensorflow/python/keras/ |
D | callbacks.py | 212 def _call_batch_hook(self, mode, hook, batch, logs=None): member in CallbackList 257 self._call_batch_hook(ModeKeys.TRAIN, 'begin', batch, logs=logs) 260 self._call_batch_hook(ModeKeys.TRAIN, 'end', batch, logs=logs) 300 self._call_batch_hook(ModeKeys.TRAIN, 'begin', batch, logs=logs) 309 self._call_batch_hook(ModeKeys.TRAIN, 'end', batch, logs=logs) 319 self._call_batch_hook(ModeKeys.TEST, 'begin', batch, logs=logs) 328 self._call_batch_hook(ModeKeys.TEST, 'end', batch, logs=logs) 338 self._call_batch_hook(ModeKeys.PREDICT, 'begin', batch, logs=logs) 347 self._call_batch_hook(ModeKeys.PREDICT, 'end', batch, logs=logs)
|