Searched refs:_dropout (Results 1 – 2 of 2) sorted by relevance
/external/tensorflow/tensorflow/python/keras/layers/legacy_rnn/ |
D | rnn_cell_wrapper_impl.py | 213 def _dropout(self, member in DropoutWrapperBase 271 inputs = self._dropout(inputs, "input", self._recurrent_input_noise, 279 new_state = self._dropout(new_state, "state", self._recurrent_state_noise, 283 output = self._dropout(output, "output", self._recurrent_output_noise,
|
/external/tensorflow/tensorflow/python/ops/ |
D | nn_ops.py | 5508 return _dropout(x=x, rate=rate, noise_shape=noise_shape, 5652 return _dropout(x=x, rate=rate, noise_shape=noise_shape, 5658 def _dropout(x, rate, noise_shape, uniform_sampler, dummy_rng_step, name, function
|