(self, state_dict: Mapping[str, Any], strict: bool = True)
| 80 | self.post[task] = getattr(self, f"_{task}_post") |
| 81 | |
| 82 | def load_state_dict(self, state_dict: Mapping[str, Any], strict: bool = True): |
| 83 | self.model.load_state_dict(state_dict, strict=strict) |
| 84 | |
| 85 | @property |
| 86 | def version(self): |