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

Method forward

generators/base_function.py:206–213  ·  view source on GitHub ↗
(self, x)

Source from the content-addressed store, hash-verified

204 self.output_nc = out_channels
205
206 def forward(self, x):
207 x = self.first(x)
208 out=[x]
209 for i in range(self.layers):
210 model = getattr(self, 'down'+str(i))
211 x = model(x)
212 out.append(x)
213 return out
214
215class FineDecoder(nn.Module):
216 """docstring for FineDecoder"""

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected