(self,x)
| 21 | torch.nn.Linear(in_features=512, out_features=in_features) |
| 22 | ) |
| 23 | def forward(self,x): |
| 24 | out = self.decoder(x) |
| 25 | out = out.view(-1,28,28) |
| 26 | return out |
| 27 | |
| 28 | if __name__ == '__main__': |
| 29 | model = Decoder(in_features=784,out_features=128) |
nothing calls this directly
no outgoing calls
no test coverage detected