(self,x)
| 22 | torch.nn.LeakyReLU(negative_slope=0.2,inplace=True) |
| 23 | ) |
| 24 | def forward(self,x): |
| 25 | out = self.conv(x) |
| 26 | return out |
| 27 | |
| 28 | class Discriminator(torch.nn.Module): |
| 29 | def __init__(self, in_channels=3,features=(64,128,256,512)): |
nothing calls this directly
no outgoing calls
no test coverage detected