From 082acb6afdae17990945912e0f425eb78edc0a0e Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Tue, 27 Feb 2024 00:35:30 +0900 Subject: [PATCH] Update modules.py Dialted -> Dilated --- melo/modules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/melo/modules.py b/melo/modules.py index 5bd020b96..5af5d1152 100644 --- a/melo/modules.py +++ b/melo/modules.py @@ -83,7 +83,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.0):