Home
last modified time | relevance | path

Searched refs:_make_execution_function (Results 1 – 5 of 5) sorted by relevance

/external/tensorflow/tensorflow/python/keras/engine/
Dtraining_arrays.py151 f = _make_execution_function(model, mode)
517 def _make_execution_function(model, mode): function
520 return distributed_training_utils._make_execution_function(model, mode)
521 return model._make_execution_function(mode)
Ddistributed_training_utils.py732 def _make_execution_function(model, mode): function
769 f = model._make_execution_function(mode)
809 f = model._make_execution_function(mode)
Dtraining_generator.py148 batch_function = _make_execution_function(
521 def _make_execution_function(model, mode, class_weight=None): function
Dtraining_distributed.py214 exec_func = model._make_execution_function(mode)
Dtraining.py2144 def _make_execution_function(self, mode): member in Model