Home
last modified time | relevance | path

Searched refs:output_gate (Results 1 – 3 of 3) sorted by relevance

/external/tensorflow/tensorflow/contrib/rnn/python/ops/
Drnn_cell.py2031 output_gate = math_ops.sigmoid(self._linear3(in_out_gate))
2033 new_h = math_ops.tanh(new_c) * output_gate
2138 input_gate, new_input, forget_gate, output_gate = gates
2141 output = math_ops.tanh(new_cell) * math_ops.sigmoid(output_gate)
/external/tensorflow/tensorflow/examples/udacity/
D6_lstm.ipynb553 " output_gate = tf.sigmoid(tf.matmul(i, ox) + tf.matmul(o, om) + ob)\n",
554 " return output_gate * tf.tanh(state), state\n",
/external/tensorflow/tensorflow/lite/kernels/internal/reference/
Dreference_ops.h1935 const float output_gate = in LstmCell() local
1945 output_gate * std::tanh(new_state); in LstmCell()