Allows arbitrary post-processing of primary output.
(self, model, states)
| 252 | raise NotImplementedError('Abstract method') |
| 253 | |
| 254 | def _prepare_output(self, model, states): |
| 255 | ''' |
| 256 | Allows arbitrary post-processing of primary output. |
| 257 | ''' |
| 258 | return states[self.get_output_state_index()] |
| 259 | |
| 260 | def _prepare_output_sequence(self, model, state_outputs): |
| 261 | ''' |
no test coverage detected