OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:cell_states
(Results
1 - 2
of
2
) sorted by null
/external/tensorflow/tensorflow/python/keras/layers/
recurrent_v2.py
225
def step(cell_inputs,
cell_states
):
226
return self.cell.call(cell_inputs,
cell_states
, **kwargs)
358
def step(cell_inputs,
cell_states
):
360
h_tm1 =
cell_states
[0]
756
def step(cell_inputs,
cell_states
):
758
h_tm1 =
cell_states
[0] # previous memory state
759
c_tm1 =
cell_states
[1] # previous carry state
[
all
...]
/external/tensorflow/tensorflow/contrib/rnn/python/ops/
lstm_ops.py
544
cell_states
, outputs = self._call_cell(
555
# Prepend initial states to
cell_states
and outputs for indexing to work
560
[array_ops.expand_dims(initial_cell_state, [0]),
cell_states
], 0)
569
final_cell_state =
cell_states
[-1]
Completed in 5644 milliseconds