(x)
| 137 | |
| 138 | def forward(self, x): |
| 139 | def stem(x): |
| 140 | for conv, bn in [(self.conv1, self.bn1), (self.conv2, self.bn2), (self.conv3, self.bn3)]: |
| 141 | x = self.relu(bn(conv(x))) |
| 142 | x = self.avgpool(x) |
| 143 | return x |
| 144 | |
| 145 | x = x.type(self.conv1.weight.dtype) |
| 146 | x = stem(x) |
nothing calls this directly
no outgoing calls
no test coverage detected