| 213 | |
| 214 | @config_class |
| 215 | class Config(BaseClassificationHead.Config): |
| 216 | pooler: BertPooler.Config = BertPooler.default_config() # Pooler layer. |
| 217 | output: Linear.Config = Linear.default_config() # Output projection layer. |
| 218 | |
| 219 | def __init__(self, cfg: Config, *, parent: Optional[Module]): |
| 220 | super().__init__(cfg, parent=parent) |
nothing calls this directly
no test coverage detected