(self, inputs)
| 148 | [keras.layers.LSTMCell(1) for _ in range(2)]) |
| 149 | |
| 150 | def call(self, inputs): |
| 151 | return self._cell(inputs, self._cell.get_initial_state(inputs)) |
| 152 | |
| 153 | |
| 154 | class RNNTest(test.TestCase): |
nothing calls this directly
no test coverage detected