| 279 | |
| 280 | @config_class |
| 281 | class Config(BaseClassificationHead.Config): |
| 282 | pooler: BertPooler.Config = BertPooler.default_config() # Pooler layer. |
| 283 | output: Linear.Config = Linear.default_config() # Output projection layer. |
| 284 | |
| 285 | def __init__(self, cfg: Config, *, parent: Optional[Module]): |
| 286 | super().__init__(cfg, parent=parent) |
nothing calls this directly
no test coverage detected