Searched refs:cell_call_fn (Results 1 – 1 of 1) sorted by relevance
/external/tensorflow/tensorflow/python/ops/ |
D | rnn_cell_impl.py | 1104 def _call_wrapped_cell(self, inputs, state, cell_call_fn, **kwargs): argument 1146 inputs, state, cell_call_fn=self.cell.__call__, scope=scope) 1182 inputs, state, cell_call_fn=self.cell.call, **kwargs) 1392 def _call_wrapped_cell(self, inputs, state, cell_call_fn, **kwargs): argument 1415 output, new_state = cell_call_fn(inputs, state, **kwargs) 1480 def _call_wrapped_cell(self, inputs, state, cell_call_fn, **kwargs): argument 1497 outputs, new_state = cell_call_fn(inputs, state, **kwargs) 1557 def _call_wrapped_cell(self, inputs, state, cell_call_fn, **kwargs): argument 1560 return cell_call_fn(inputs, state, **kwargs)
|