From 7dca74e032cfc35bae6c16d038c8b391c1416a3b Mon Sep 17 00:00:00 2001 From: babysor Date: Sat, 13 Nov 2021 10:57:45 +0800 Subject: [PATCH] Change default to use speaker embed for reference --- synthesizer/hparams.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/synthesizer/hparams.py b/synthesizer/hparams.py index e2d6a0f..672634f 100644 --- a/synthesizer/hparams.py +++ b/synthesizer/hparams.py @@ -92,5 +92,5 @@ hparams = HParams( silence_min_duration_split = 0.4, # Duration in seconds of a silence for an utterance to be split utterance_min_duration = 1.6, # Duration in seconds below which utterances are discarded use_gst = True, # Whether to use global style token - use_ser_for_gst = False, # Whether to use speaker embedding referenced for global style token + use_ser_for_gst = True, # Whether to use speaker embedding referenced for global style token )