bcd33bcd

Results 1 comments of bcd33bcd

**Thank you for your reply. Here is the model of discriminator** class Discriminator(nn.Module): def __init__(self,nc,ndf): super(Discriminator,self).__init__() # 32 x 32 self.layer1 = nn.Sequential(nn.Conv2d(nc,ndf,kernel_size=4,stride=2,padding=1), nn.BatchNorm2d(ndf), nn.LeakyReLU(0.2,inplace=True)) self.layer1 = nn.DataParallel(self.layer1) # 16...