From 505f7f941926d135de2d340104b66b63338f2ac8 Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Thu, 10 Nov 2022 00:15:04 +0900 Subject: [PATCH] Fix typo in modules.py Dialted -> Dilated --- modules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules.py b/modules.py index 9c7fd9c..3484f6a 100644 --- a/modules.py +++ b/modules.py @@ -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__()