(self, model, states)
| 854 | ) |
| 855 | |
| 856 | def _prepare_output(self, model, states): |
| 857 | output = self.internal_cell._prepare_output( |
| 858 | model, |
| 859 | states, |
| 860 | ) |
| 861 | if self.dropout_ratio is not None: |
| 862 | output = self._apply_dropout(model, output) |
| 863 | return output |
| 864 | |
| 865 | def _prepare_output_sequence(self, model, state_outputs): |
| 866 | output = self.internal_cell._prepare_output_sequence( |
nothing calls this directly
no test coverage detected