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.py390 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)
Dtraining_arrays.py256 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)
Dtraining_generator.py253 callbacks._call_batch_hook(mode, 'begin', step, batch_logs)
286 callbacks._call_batch_hook(mode, 'end', step, batch_logs)
/external/tensorflow/tensorflow/python/keras/
Dcallbacks.py212 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)