# Copyright (c) Facebook, Inc. and its affiliates. # # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. import unittest from tests.speech import TestFairseqSpeech class TestS2TTransformer(TestFairseqSpeech): def setUp(self): self.set_up_librispeech() def test_librispeech_s2t_transformer_s_checkpoint(self): self.base_test( ckpt_name="librispeech_transformer_s.pt", reference_score=9, arg_overrides={"config_yaml": "cfg_librispeech.yaml"}, ) if __name__ == "__main__": unittest.main()