Args: x (Tensor): Float tensor variable with the shape (B, C, T). Returns: Tensor: Float tensor variable with the shape (B, C, T).
(self, x)
| 50 | ) |
| 51 | |
| 52 | def forward(self, x): |
| 53 | """ |
| 54 | Args: |
| 55 | x (Tensor): Float tensor variable with the shape (B, C, T). |
| 56 | Returns: |
| 57 | Tensor: Float tensor variable with the shape (B, C, T). |
| 58 | """ |
| 59 | x = self.conv(x) |
| 60 | return x |
| 61 | |
| 62 | |
| 63 | class NonCausalConvTranspose1d(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected