(self, dim)
| 161 | |
| 162 | class NoiseBlock(nn.Module): |
| 163 | def __init__(self, dim): |
| 164 | super().__init__() |
| 165 | self.linear = WNCausalConv1d(dim, dim, kernel_size=1, bias=False) |
| 166 | |
| 167 | def forward(self, x): |
| 168 | B, C, T = x.shape |
nothing calls this directly
no test coverage detected