MADDoG
MADDoG copied to clipboard
[CVPR 2019] Pytorch codes for Multi-adversarial Discriminative Deep Domain Generalization for Face Presentation Attack Detection
Results
2
MADDoG issues
Sort by
recently updated
recently updated
newest added
关于gan()函数收敛问题?怎么做才能使得gan()收敛?
``` class FeatExtractor(nn.Module): def __init__(self, in_channels=6): super(FeatExtractor, self).__init__() self.inc = inconv(in_channels, 64) self.down1 = DOWN(64, 128) self.down2 = DOWN(128, 128) self.down3 = DOWN(128, 128) def forward(self, x): dx1 = self.inc(x)...