| 423 | @si_module |
| 424 | class GaussianZ(nn.Module): |
| 425 | class Config: |
| 426 | dim: int |
| 427 | latent_dim: int |
| 428 | bias: bool = False |
| 429 | use_weight_norm: bool = False |
| 430 | |
| 431 | def __init__(self, c: Config): |
| 432 | super().__init__() |
nothing calls this directly
no outgoing calls
no test coverage detected