(self)
| 786 | return self._curr_module.output_shapes |
| 787 | |
| 788 | def get_params(self): |
| 789 | assert self.binded and self.params_initialized |
| 790 | return self._curr_module.get_params() |
| 791 | |
| 792 | def init_params(self, initializer=Uniform(0.01), arg_params=None, aux_params=None, |
| 793 | allow_missing=False, force_init=False, allow_extra=False): |
no test coverage detected