From f8195834eeba00652a1805899c7c3c7df6be9b3d Mon Sep 17 00:00:00 2001 From: Eren Golge Date: Tue, 16 Jul 2019 15:18:00 +0200 Subject: [PATCH] TODO added --- layers/tacotron.py | 1 + 1 file changed, 1 insertion(+) diff --git a/layers/tacotron.py b/layers/tacotron.py index 034f682b..1f0d0be6 100644 --- a/layers/tacotron.py +++ b/layers/tacotron.py @@ -67,6 +67,7 @@ class BatchNormConv1d(nn.Module): class Highway(nn.Module): + # TODO: Try GLU layer def __init__(self, in_size, out_size): super(Highway, self).__init__() self.H = nn.Linear(in_size, out_size)