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