From b0c4a77aea67b0ea93a4c2419f2e2c4dba518577 Mon Sep 17 00:00:00 2001 From: SanjaESC Date: Mon, 13 Jul 2020 08:51:37 +0200 Subject: [PATCH] small gst config change --- tests/test_tacotron2_model.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/test_tacotron2_model.py b/tests/test_tacotron2_model.py index 2faccd75..a0c5e59a 100644 --- a/tests/test_tacotron2_model.py +++ b/tests/test_tacotron2_model.py @@ -20,7 +20,12 @@ c = load_config(os.path.join(get_tests_input_path(), 'test_config.json')) class TacotronTrainTest(unittest.TestCase): +<<<<<<< HEAD def test_train_step(self): # pylint: disable=no-self-use +======= + @staticmethod + def test_train_step(): +>>>>>>> small gst config change input_dummy = torch.randint(0, 24, (8, 128)).long().to(device) input_lengths = torch.randint(100, 128, (8, )).long().to(device) input_lengths = torch.sort(input_lengths, descending=True)[0]