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

Method forward

Code/net/Discriminator.py:53–56  ·  view source on GitHub ↗
(self,x)

Source from the content-addressed store, hash-verified

51 *layers
52 )
53 def forward(self,x):
54 x = self.initial(x)
55 out= self.model(x)
56 return out
57
58if __name__ == '__main__':
59 x = torch.randn(size = (5,3,256,256),device='cpu')

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected