Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/python/keras/layers/
Drecurrent.py2395 def _compute_carry_and_output(self, x, h_tm1, c_tm1): argument
2403 c = f * c_tm1 + i * self.activation(x_c + K.dot(
2409 def _compute_carry_and_output_fused(self, z, c_tm1): argument
2414 c = f * c_tm1 + i * self.activation(z2)
2420 c_tm1 = states[1] # previous carry state
2463 c, o = self._compute_carry_and_output(x, h_tm1, c_tm1)
2473 c, o = self._compute_carry_and_output_fused(z, c_tm1)
2616 def _compute_carry_and_output(self, x, h_tm1, c_tm1): argument
2621 self.input_gate_peephole_weights * c_tm1)
2624 self.forget_gate_peephole_weights * c_tm1)
[all …]
Dconvolutional_recurrent.py592 c_tm1 = states[1] # previous carry state
645 c = f * c_tm1 + i * self.activation(x_c + h_c)
Drecurrent_v2.py1377 c_tm1 = cell_states[1] # previous carry state
1387 c = f * c_tm1 + i * nn.tanh(z2)