MCPcopy Create free account
hub / github.com/OpenTalker/StyleHEAT / __init__

Method __init__

models/styleheat/base_function.py:256–274  ·  view source on GitHub ↗
(self, image_nc, feature_nc, ngf, img_f, layers, num_block, norm_layer=nn.BatchNorm2d,
                 nonlinearity=nn.LeakyReLU(), use_spect=False)

Source from the content-addressed store, hash-verified

254 """docstring for FineDecoder"""
255
256 def __init__(self, image_nc, feature_nc, ngf, img_f, layers, num_block, norm_layer=nn.BatchNorm2d,
257 nonlinearity=nn.LeakyReLU(), use_spect=False):
258 super(FineDecoderV2, self).__init__()
259 self.layers = layers
260 for i in range(layers)[::-1]:
261 in_channels = min(ngf * (2 ** (i + 1)), img_f)
262 out_channels = min(ngf * (2 ** i), img_f)
263 up = UpBlock2d(in_channels, out_channels, norm_layer, nonlinearity, use_spect)
264 res = FineADAINResBlocks(num_block, in_channels, feature_nc, norm_layer, nonlinearity, use_spect)
265 jump = Jump(out_channels, norm_layer, nonlinearity, use_spect)
266
267 setattr(self, 'up' + str(i), up)
268 setattr(self, 'res' + str(i), res)
269 setattr(self, 'jump' + str(i), jump)
270
271 self.final1 = FinalBlock2d(out_channels, image_nc, use_spect, 'tanh')
272 self.final2 = FinalBlock2d(out_channels, image_nc, use_spect, 'tanh')
273
274 self.output_nc = out_channels
275
276 def forward(self, x, z):
277 out = x.pop()

Callers

nothing calls this directly

Calls 5

UpBlock2dClass · 0.85
FineADAINResBlocksClass · 0.85
JumpClass · 0.85
FinalBlock2dClass · 0.85
__init__Method · 0.45

Tested by

no test coverage detected