(self, x: torch.Tensor, t: torch.Tensor)
| 144 | self.res = ResidualBlock(in_channels + out_channels, out_channels, time_channels, is_noise=is_noise) |
| 145 | |
| 146 | def forward(self, x: torch.Tensor, t: torch.Tensor): |
| 147 | x = self.res(x, t) |
| 148 | return x |
| 149 | |
| 150 | |
| 151 | class MiddleBlock(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected