MCPcopy Create free account
hub / github.com/CompVis/diff2flow / __init__

Method __init__

diff2flow/models/unet/openaimodel.py:126–131  ·  view source on GitHub ↗
(self, channels, out_channels=None, ks=5)

Source from the content-addressed store, hash-verified

124class 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)

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected