(self, channels)
| 264 | |
| 265 | class Upsample: |
| 266 | def __init__(self, channels): |
| 267 | self.conv = Conv2d(channels, channels, 3, padding=1) |
| 268 | |
| 269 | def __call__(self, x): |
| 270 | bs,c,py,px = x.shape |
nothing calls this directly
no outgoing calls
no test coverage detected