(self, x)
| 64 | ) |
| 65 | |
| 66 | def forward(self, x): |
| 67 | out = relu(self.bn1(self.conv1(x))) |
| 68 | out = self.bn2(self.conv2(out)) |
| 69 | out += self.shortcut(x) |
| 70 | out = relu(out) |
| 71 | return out |
| 72 | |
| 73 | |
| 74 | class ResNet(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected