(self, x)
| 55 | ) |
| 56 | |
| 57 | def forward(self, x): |
| 58 | out = F.relu(self.bn1(self.conv1(x))) |
| 59 | out = F.relu(self.bn2(self.conv2(out))) |
| 60 | out = self.bn3(self.conv3(out)) |
| 61 | out += self.shortcut(x) |
| 62 | out = F.relu(out) |
| 63 | return out |
| 64 | |
| 65 | |
| 66 | class ResNet(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected