MCPcopy Create free account
hub / github.com/ali-vilab/dreamtalk / forward

Method forward

generators/base_function.py:55–62  ·  view source on GitHub ↗
(self, x, z)

Source from the content-addressed store, hash-verified

53 self.output_nc = out_channels
54
55 def forward(self, x, z):
56 out = self.input_layer(x)
57 out_list = [out]
58 for i in range(self.layers):
59 model = getattr(self, 'encoder' + str(i))
60 out = model(out, z)
61 out_list.append(out)
62 return out_list
63
64class ADAINDecoder(nn.Module):
65 """docstring for ADAINDecoder"""

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected