MCPcopy Index your code
hub / github.com/CompVis/diff2flow / __init__

Method __init__

diff2flow/models/unet/openaimodel.py:146–159  ·  view source on GitHub ↗
(self, channels, use_conv, dims=2, out_channels=None,padding=1)

Source from the content-addressed store, hash-verified

144 """
145
146 def __init__(self, channels, use_conv, dims=2, out_channels=None,padding=1):
147 super().__init__()
148 self.channels = channels
149 self.out_channels = out_channels or channels
150 self.use_conv = use_conv
151 self.dims = dims
152 stride = 2 if dims != 3 else (1, 2, 2)
153 if use_conv:
154 self.op = conv_nd(
155 dims, self.channels, self.out_channels, 3, stride=stride, padding=padding
156 )
157 else:
158 assert self.channels == self.out_channels
159 self.op = avg_pool_nd(dims, kernel_size=stride, stride=stride)
160
161 def forward(self, x):
162 assert x.shape[1] == self.channels

Callers

nothing calls this directly

Calls 3

conv_ndFunction · 0.90
avg_pool_ndFunction · 0.90
__init__Method · 0.45

Tested by

no test coverage detected