(self)
| 52 | return self.bn(x) |
| 53 | |
| 54 | def __init__(self): |
| 55 | super().__init__() |
| 56 | self.i = self.InnerModule() |
| 57 | self.bn = BatchNorm2d(4) |
| 58 | self.param = Parameter(np.ones(1, dtype=np.float32)) |
| 59 | self.buff = Tensor(np.ones(1, dtype=np.float32)) |
| 60 | |
| 61 | def forward(self, x): |
| 62 | x = self.i(x) |
nothing calls this directly
no test coverage detected