| 88 | class BaseModule(nn.Module, Updateable): |
| 89 | @dataclass |
| 90 | class Config: |
| 91 | weights: Optional[str] = None |
| 92 | freeze: Optional[bool] = False |
| 93 | |
| 94 | cfg: Config # add this to every subclass of BaseModule to enable static type checking |
| 95 |
nothing calls this directly
no outgoing calls
no test coverage detected