From 4ab49d946a674d751cbd55b5e14ff3942a02fa0c Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Mon, 14 Aug 2023 01:14:29 +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 @@ class ConvReluNorm(nn.Module): 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__()