(self, x: torch.Tensor, t: torch.Tensor)
| 127 | self.res = ResidualBlock(in_channels, out_channels, time_channels, is_noise=is_noise) |
| 128 | |
| 129 | def forward(self, x: torch.Tensor, t: torch.Tensor): |
| 130 | x = self.res(x, t) |
| 131 | return x |
| 132 | |
| 133 | |
| 134 | class UpBlock(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected