| 567 | |
| 568 | @config_class |
| 569 | class Config(BaseQuantizer.Config): |
| 570 | input_dim: Required[int] = REQUIRED |
| 571 | input_proj: MultiLinear.Config = MultiLinear.default_config() |
| 572 | temperature_schedule: Required[InstantiableConfig] = REQUIRED |
| 573 | |
| 574 | def __init__(self, cfg: Config, *, parent: Optional[Module]): |
| 575 | super().__init__(cfg, parent=parent) |
nothing calls this directly
no test coverage detected