Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/PaddlePaddle/PaddleGAN
/ forward
Method
forward
ppgan/modules/first_order.py:348–352 ·
view source on GitHub ↗
(self, x)
Source
from the content-addressed store, hash-verified
346
self.down_blocks = nn.LayerList(down_blocks)
347
348
def
forward(self, x):
349
outs = [x]
350
for
down_block in self.down_blocks:
351
outs.append(down_block(outs[-1]))
352
return
outs
353
354
355
class
Decoder(nn.Layer):
Callers
nothing calls this directly
Calls
1
append
Method · 0.80
Tested by
no test coverage detected