[minor] hifigan_generator.py typo (#2462)

resblock2 description updated.
This commit is contained in:
Rajiv P 2023-03-28 19:43:36 +09:00 committed by GitHub
parent d309f50e53
commit c2d15cd413
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ def get_padding(k, d):
class ResBlock1(torch.nn.Module):
"""Residual Block Type 1. It has 3 convolutional layers in each convolutiona block.
"""Residual Block Type 1. It has 3 convolutional layers in each convolutional block.
Network::
@ -105,7 +105,7 @@ class ResBlock1(torch.nn.Module):
class ResBlock2(torch.nn.Module):
"""Residual Block Type 1. It has 3 convolutional layers in each convolutiona block.
"""Residual Block Type 2. It has 1 convolutional layers in each convolutional block.
Network::