(self, state_dict)
| 306 | return dict(config=self.config) |
| 307 | |
| 308 | def load_state_dict(self, state_dict): |
| 309 | if 'config' in state_dict: |
| 310 | self.config.update(ConfigDict(state_dict['config'])) |
| 311 | |
| 312 | @property |
| 313 | def seq_length(self): |
nothing calls this directly
no outgoing calls
no test coverage detected