(self, model, input_t, seq_lengths, states, timestep)
| 140 | return output, states_for_all_steps |
| 141 | |
| 142 | def apply(self, model, input_t, seq_lengths, states, timestep): |
| 143 | input_t = self.prepare_input(model, input_t) |
| 144 | states = self._apply( |
| 145 | model, input_t, seq_lengths, states, timestep) |
| 146 | output = self._prepare_output(model, states) |
| 147 | return output, states |
| 148 | |
| 149 | def _apply( |
| 150 | self, |
no test coverage detected