(self, inputs, mask=None, training=None, initial_state=None)
| 1387 | self.input_spec = [InputSpec(ndim=3)] |
| 1388 | |
| 1389 | def call(self, inputs, mask=None, training=None, initial_state=None): |
| 1390 | self.cell.reset_dropout_mask() |
| 1391 | self.cell.reset_recurrent_dropout_mask() |
| 1392 | return super(SimpleRNN, self).call( |
| 1393 | inputs, mask=mask, training=training, initial_state=initial_state) |
| 1394 | |
| 1395 | @property |
| 1396 | def units(self): |
nothing calls this directly
no test coverage detected