(self, x: torch.Tensor)
| 70 | self.dim1 = dim1 |
| 71 | |
| 72 | def forward(self, x: torch.Tensor): |
| 73 | x = torch.transpose(x, self.dim0, self.dim1) |
| 74 | return x |
| 75 | |
| 76 | |
| 77 | # A causal variant of Conv1d |
nothing calls this directly
no outgoing calls
no test coverage detected