Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/python/keras/layers/
Drecurrent_v2.py443 def step(cell_inputs, cell_states): argument
444 return self.cell(cell_inputs, cell_states, **kwargs)
589 def step(cell_inputs, cell_states): argument
591 h_tm1 = cell_states[0]
1374 def step(cell_inputs, cell_states): argument
1376 h_tm1 = cell_states[0] # previous memory state
1377 c_tm1 = cell_states[1] # previous carry state