| Implemented MFCC and STFT.

This commit is contained in:
2025-04-26 17:03:28 +03:00
parent c04b072de6
commit d70c86c257
4 changed files with 40 additions and 54 deletions

View File

@ -39,7 +39,7 @@ class AttentionBlock(nn.Module):
return x * attention_weights
class SISUDiscriminator(nn.Module):
def __init__(self, base_channels=64):
def __init__(self, base_channels=16):
super(SISUDiscriminator, self).__init__()
layers = base_channels
self.model = nn.Sequential(