(self, x)
| 46 | |
| 47 | |
| 48 | def forward(self, x): |
| 49 | y = x |
| 50 | y = self.relu(self.norm1(self.conv1(y))) |
| 51 | y = self.relu(self.norm2(self.conv2(y))) |
| 52 | |
| 53 | if self.downsample is not None: |
| 54 | x = self.downsample(x) |
| 55 | |
| 56 | return self.relu(x+y) |
| 57 | |
| 58 | |
| 59 |
nothing calls this directly
no outgoing calls
no test coverage detected