(self)
| 262 | x = self.bn(x) |
| 263 | |
| 264 | def __init__(self): |
| 265 | super().__init__() |
| 266 | self.bn = BatchNorm2d(4) |
| 267 | self.a = [ |
| 268 | BatchNorm2d(4), |
| 269 | {"x": BatchNorm2d(4), "y": [BatchNorm2d(4), self.InnerModule()], "z": 0}, |
| 270 | (self.InnerModule(),), |
| 271 | ] |
| 272 | |
| 273 | def forward(self, x): |
| 274 | return x |
nothing calls this directly
no test coverage detected