| 470 | @si_module |
| 471 | class WaveCodec(nn.Module): |
| 472 | class Config: |
| 473 | resnet_config: ResNetStack.Config = None |
| 474 | sample_rate: int = 16_000 |
| 475 | use_weight_norm: bool = False |
| 476 | |
| 477 | compressor_config: dataclass = None |
| 478 | |
| 479 | norm_stddev: float = 1.0 |
| 480 | |
| 481 | def __init__(self, c: Config): |
| 482 | super().__init__() |
nothing calls this directly
no outgoing calls
no test coverage detected