Learned 2x upsampling without padding
| 122 | return x |
| 123 | |
| 124 | class TransposedUpsample(nn.Module): |
| 125 | 'Learned 2x upsampling without padding' |
| 126 | def __init__(self, channels, out_channels=None, ks=5): |
| 127 | super().__init__() |
| 128 | self.channels = channels |
| 129 | self.out_channels = out_channels or channels |
| 130 | |
| 131 | self.up = nn.ConvTranspose2d(self.channels,self.out_channels,kernel_size=ks,stride=2) |
| 132 | |
| 133 | def forward(self,x): |
| 134 | return self.up(x) |
| 135 | |
| 136 | |
| 137 | class Downsample(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected