(self, x)
| 28 | ) |
| 29 | |
| 30 | def forward(self, x): |
| 31 | out = F.relu(self.bn1(self.conv1(x))) |
| 32 | out = self.bn2(self.conv2(out)) |
| 33 | out += self.shortcut(x) |
| 34 | out = F.relu(out) |
| 35 | return out |
| 36 | |
| 37 | |
| 38 | class Bottleneck(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected