Home
last modified time | relevance | path

Searched refs:_call_batch_hook (Results 1 – 4 of 4) sorted by relevance

/external/tensorflow/tensorflow/python/keras/engine/
Dtraining_distributed_v1.py237 callbacks._call_batch_hook(mode, 'begin', step_index, batch_logs)
252 callbacks._call_batch_hook(mode, 'end', step_index, batch_logs)
384 callbacks._call_batch_hook(mode, 'begin', current_step, batch_logs)
405 callbacks._call_batch_hook(mode, 'end', current_step, batch_logs)
530 callbacks._call_batch_hook(mode, 'begin', current_step, batch_logs)
553 callbacks._call_batch_hook(mode, 'end', current_step, batch_logs)
Dtraining_arrays_v1.py283 callbacks._call_batch_hook(mode, 'begin', step, batch_logs)
340 callbacks._call_batch_hook(mode, 'end', step, batch_logs)
381 callbacks._call_batch_hook(mode, 'begin', batch_index, batch_logs)
395 callbacks._call_batch_hook(mode, 'end', batch_index, batch_logs)
Dtraining_generator_v1.py256 callbacks._call_batch_hook(mode, 'begin', step, batch_logs)
285 callbacks._call_batch_hook(mode, 'end', step, batch_logs)
/external/tensorflow/tensorflow/python/keras/
Dcallbacks.py291 def _call_batch_hook(self, mode, hook, batch, logs=None): member in CallbackList
390 self._call_batch_hook(ModeKeys.TRAIN, 'begin', batch, logs=logs)
394 self._call_batch_hook(ModeKeys.TRAIN, 'end', batch, logs=logs)
447 self._call_batch_hook(ModeKeys.TRAIN, 'begin', batch, logs=logs)
457 self._call_batch_hook(ModeKeys.TRAIN, 'end', batch, logs=logs)
469 self._call_batch_hook(ModeKeys.TEST, 'begin', batch, logs=logs)
479 self._call_batch_hook(ModeKeys.TEST, 'end', batch, logs=logs)
491 self._call_batch_hook(ModeKeys.PREDICT, 'begin', batch, logs=logs)
501 self._call_batch_hook(ModeKeys.PREDICT, 'end', batch, logs=logs)