(self)
| 574 | |
| 575 | @property |
| 576 | def head(self): |
| 577 | if 'head' != self.head_prefix: |
| 578 | return getattr(self, self.head_prefix) |
| 579 | return super().__getattr__('head') |
| 580 | |
| 581 | def extract_feature(self, **input: Dict[str, Any]) -> Dict[str, Any]: |
| 582 | """default forward method is the backbone-only forward""" |
no test coverage detected