MCPcopy Create free account
hub / github.com/KeepTryingTo/Pytorch-GAN / forward

Method forward

Adversarial_AutoEncoder/net/Encoder.py:23–26  ·  view source on GitHub ↗
(self,x)

Source from the content-addressed store, hash-verified

21 torch.nn.Linear(in_features=256, out_features=out_features),
22 )
23 def forward(self,x):
24 x = x.view(-1,784)
25 out = self.encoder(x)
26 return out
27
28if __name__ == '__main__':
29 model = Encoder(in_features=784,out_features=128)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected