(self, inputs)
| 137 | [rnn_cell_impl.LSTMCell(1) for _ in range(2)]) |
| 138 | |
| 139 | def call(self, inputs): |
| 140 | return self._cell(inputs, self._cell.get_initial_state(inputs)) |
| 141 | |
| 142 | |
| 143 | class KerasNetworkKerasRNNs(keras_network.Network): |
nothing calls this directly
no test coverage detected