| 29 | class PixelShuffleUpsampleNetwork(BaseModule): |
| 30 | @dataclass |
| 31 | class Config(BaseModule.Config): |
| 32 | in_channels: int = 1024 |
| 33 | out_channels: int = 40 |
| 34 | scale_factor: int = 4 |
| 35 | |
| 36 | conv_layers: int = 4 |
| 37 | conv_kernel_size: int = 3 |
| 38 | |
| 39 | cfg: Config |
| 40 |
nothing calls this directly
no outgoing calls
no test coverage detected