(self, x)
| 178 | self.pool.append(nn.AvgPool2d(3, stride=2, padding=1)) |
| 179 | |
| 180 | def forward(self, x): |
| 181 | for pool in self.pool: |
| 182 | x = pool(x) |
| 183 | return x |
| 184 | |
| 185 | |
| 186 | @BACKBONES.register_module() |
nothing calls this directly
no outgoing calls
no test coverage detected