From 6e8b66aa89bf3ea47ee587383a53779ef58eb722 Mon Sep 17 00:00:00 2001 From: Eren Golge Date: Tue, 2 Apr 2019 10:35:13 +0200 Subject: [PATCH] smaller windowing range --- layers/tacotron2.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/layers/tacotron2.py b/layers/tacotron2.py index 3a3fc62c..9dbed3fc 100644 --- a/layers/tacotron2.py +++ b/layers/tacotron2.py @@ -125,8 +125,8 @@ class Attention(nn.Module): self._mask_value = -float("inf") self.windowing = windowing if self.windowing: - self.win_back = 3 - self.win_front = 6 + self.win_back = 1 + self.win_front = 3 self.win_idx = None self.norm = norm