hifi-gan icon indicating copy to clipboard operation
hifi-gan copied to clipboard

kernel_size=3?

Open a897456 opened this issue 1 year ago • 0 comments

in models.py
self.resblocks = nn.ModuleList() for i in range(len(self.ups)): ch = h.upsample_initial_channel//(2**(i+1)) for j, (k, d) in enumerate(zip(h.resblock_kernel_sizes, h.resblock_dilation_sizes)): self.resblocks.append(resblock(h, ch, k, d))

class ResBlock1(torch.nn.Module): def init(self, h, channels, kernel_size=3, dilation=(1, 3, 5)):

The k in the first paragraph is [3 7 11],Why is k fixed to 3 in the second paragraph?

a897456 avatar Oct 11 '23 08:10 a897456