From ef37633cb300e328335e2fba304d8a279a959267 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eren=20G=C3=B6lge?= Date: Thu, 22 Apr 2021 12:37:31 +0200 Subject: [PATCH] [ci skip] use prenet_dropout by default with Tacotron models --- TTS/tts/configs/config.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/TTS/tts/configs/config.json b/TTS/tts/configs/config.json index ba33acc5..4092a1b0 100644 --- a/TTS/tts/configs/config.json +++ b/TTS/tts/configs/config.json @@ -96,7 +96,7 @@ // TACOTRON PRENET "memory_size": -1, // ONLY TACOTRON - size of the memory queue used fro storing last decoder predictions for auto-regression. If < 0, memory queue is disabled and decoder only uses the last prediction frame. "prenet_type": "original", // "original" or "bn". - "prenet_dropout": false, // enable/disable dropout at prenet. + "prenet_dropout": true, // enable/disable dropout at prenet. // TACOTRON ATTENTION "attention_type": "original", // 'original' , 'graves', 'dynamic_convolution' @@ -171,4 +171,3 @@ } ] } -