(self)
| 97 | |
| 98 | @property |
| 99 | def output_size(self): |
| 100 | if getattr(self.cells[-1], 'output_size', None) is not None: |
| 101 | return self.cells[-1].output_size |
| 102 | elif _is_multiple_state(self.cells[-1].state_size): |
| 103 | return self.cells[-1].state_size[0] |
| 104 | else: |
| 105 | return self.cells[-1].state_size |
| 106 | |
| 107 | def get_initial_state(self, inputs=None, batch_size=None, dtype=None): |
| 108 | initial_states = [] |
nothing calls this directly
no test coverage detected