From a58e986f684ba71450be9eaf4aa8be1b12c23dfb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eren=20G=C3=B6lge?= Date: Mon, 31 May 2021 15:44:09 +0200 Subject: [PATCH] reduce fullband-melgan test model size --- tests/vocoder_tests/test_fullband_melgan_train.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/vocoder_tests/test_fullband_melgan_train.py b/tests/vocoder_tests/test_fullband_melgan_train.py index 2b286b91..6e533eb9 100644 --- a/tests/vocoder_tests/test_fullband_melgan_train.py +++ b/tests/vocoder_tests/test_fullband_melgan_train.py @@ -22,6 +22,7 @@ config = FullbandMelganConfig( print_eval=True, discriminator_model_params={"base_channels": 16, "max_channels": 256, "downsample_factors": [4, 4, 4]}, data_path="tests/data/ljspeech", + discriminator_model_params={"base_channels": 16, "max_channels": 128, "downsample_factors": [4, 4, 4]}, output_path=output_path, ) config.audio.do_trim_silence = True