(self, x)
| 112 | self.norm = nn.BatchNorm3d(out_features, affine=True) |
| 113 | |
| 114 | def forward(self, x): |
| 115 | out = F.interpolate(x, scale_factor=(1, 2, 2)) |
| 116 | out = self.conv(out) |
| 117 | out = self.norm(out) |
| 118 | out = F.relu(out) |
| 119 | return out |
| 120 | |
| 121 | |
| 122 | class DownBlock2d(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected