Skip to content

Commit

Permalink
Fix typo in modules.py
Browse files Browse the repository at this point in the history
Dialted -> Dilated
  • Loading branch information
eltociear authored Nov 9, 2022
1 parent c31df28 commit 505f7f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def forward(self, x, x_mask):

class DDSConv(nn.Module):
"""
Dialted and Depth-Separable Convolution
Dilated and Depth-Separable Convolution
"""
def __init__(self, channels, kernel_size, n_layers, p_dropout=0.):
super().__init__()
Expand Down

0 comments on commit 505f7f9

Please sign in to comment.