Home
last modified time | relevance | path

Searched refs:_call_if_callable (Results 1 – 8 of 8) sorted by relevance

/external/tensorflow/tensorflow/python/training/
Dadadelta.py73 lr = self._call_if_callable(self._lr)
74 rho = self._call_if_callable(self._rho)
75 epsilon = self._call_if_callable(self._epsilon)
Drmsprop.py130 lr = self._call_if_callable(self._learning_rate)
131 decay = self._call_if_callable(self._decay)
132 momentum = self._call_if_callable(self._momentum)
133 epsilon = self._call_if_callable(self._epsilon)
Dadam.py135 lr = self._call_if_callable(self._lr)
136 beta1 = self._call_if_callable(self._beta1)
137 beta2 = self._call_if_callable(self._beta2)
138 epsilon = self._call_if_callable(self._epsilon)
Dgradient_descent.py80 learning_rate = self._call_if_callable(self._learning_rate)
Dadagrad.py92 learning_rate = self._call_if_callable(self._learning_rate)
Doptimizer.py1220 def _call_if_callable(self, param): member in Optimizer
/external/tensorflow/tensorflow/contrib/opt/python/training/
Dadam_gs_optimizer.py130 lr = self._call_if_callable(self._lr)
131 beta1 = self._call_if_callable(self._beta1)
132 beta2 = self._call_if_callable(self._beta2)
133 epsilon = self._call_if_callable(self._epsilon)
/external/tensorflow/tensorflow/python/keras/optimizer_v2/
Doptimizer_v2.py773 def _call_if_callable(self, param): member in OptimizerV2