(self)
| 343 | x = self.bn(x) |
| 344 | |
| 345 | def __init__(self): |
| 346 | super().__init__() |
| 347 | self.bn = BatchNorm2d(4) |
| 348 | self.seq = Sequential(BatchNorm2d(4), self.InnerModule(),) |
| 349 | |
| 350 | def forward(self, x): |
| 351 | return x |
nothing calls this directly
no test coverage detected