(self)
| 134 | |
| 135 | class AdaptiveAvgMaxPool2d(nn.Module): |
| 136 | def __init__(self): |
| 137 | super().__init__() |
| 138 | self.avg_pool = GlobalAvgPool2d() |
| 139 | self.max_pool = GlobalMaxPool2d() |
| 140 | |
| 141 | def forward(self, x): |
| 142 | avg = self.avg_pool(x) |
nothing calls this directly
no test coverage detected