(self, inputs, initial_state=None, **kwargs)
| 181 | super(BaseDecoder, self).__init__(**kwargs) |
| 182 | |
| 183 | def call(self, inputs, initial_state=None, **kwargs): |
| 184 | init_kwargs = kwargs |
| 185 | init_kwargs["initial_state"] = initial_state |
| 186 | return dynamic_decode(self, |
| 187 | output_time_major=self.output_time_major, |
| 188 | impute_finished=self.impute_finished, |
| 189 | maximum_iterations=self.maximum_iterations, |
| 190 | parallel_iterations=self.parallel_iterations, |
| 191 | swap_memory=self.swap_memory, |
| 192 | decoder_init_input=inputs, |
| 193 | decoder_init_kwargs=init_kwargs) |
| 194 | |
| 195 | @property |
| 196 | def batch_size(self): |
nothing calls this directly
no test coverage detected