nnsvs.discriminators
Discriminator implementations mostly used for GAN-based post-filters.
All the discriminators must returns list of tensors. The last tensor of the list is regarded as the output of the discrminator. The others are used as intermedieate feature maps.
Conv2dD
- class nnsvs.discriminators.Conv2dD(in_dim=None, channels=64, kernel_size=(5, 3), padding=(0, 0), last_sigmoid=False, init_type='kaiming_normal', padding_mode='zeros')[source]
Conv2d-based discriminator
The implementation follows the discrimiantor of the GAN-based post-filters in Kaneko et al. [KTKY17b].
- Parameters: