test_export.py 2.0 KB
Newer Older
H
huangyuxin 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
# Copyright (c) 2021 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Evaluation for DeepSpeech2 model."""
H
huangyuxin 已提交
15
from yacs.config import CfgNode
H
huangyuxin 已提交
16

17 18 19
from paddlespeech.s2t.exps.deepspeech2.model import DeepSpeech2ExportTester as ExportTester
from paddlespeech.s2t.training.cli import default_argument_parser
from paddlespeech.s2t.utils.utility import print_arguments
H
huangyuxin 已提交
20 21 22 23


def main_sp(config, args):
    exp = ExportTester(config, args)
H
Hui Zhang 已提交
24 25 26
    with exp.eval():
        exp.setup()
        exp.run_test()
H
huangyuxin 已提交
27 28 29 30 31 32 33 34


def main(config, args):
    main_sp(config, args)


if __name__ == "__main__":
    parser = default_argument_parser()
H
huangyuxin 已提交
35 36 37 38 39 40
    # save asr result to
    parser.add_argument(
        "--result_file", type=str, help="path of save the asr result")
    #load jit model from
    parser.add_argument(
        "--export_path", type=str, help="path of the jit model to save")
H
huangyuxin 已提交
41 42
    parser.add_argument(
        "--enable-auto-log", action="store_true", help="use auto log")
H
huangyuxin 已提交
43 44 45 46
    args = parser.parse_args()
    print_arguments(args, globals())

    # https://yaml.org/type/float.html
47
    config = CfgNode(new_allowed=True)
H
huangyuxin 已提交
48 49
    if args.config:
        config.merge_from_file(args.config)
H
huangyuxin 已提交
50 51 52 53
    if args.decode_cfg:
        decode_confs = CfgNode(new_allowed=True)
        decode_confs.merge_from_file(args.decode_cfg)
        config.decode = decode_confs
H
huangyuxin 已提交
54 55 56 57 58 59 60 61 62
    if args.opts:
        config.merge_from_list(args.opts)
    config.freeze()
    print(config)
    if args.dump_config:
        with open(args.dump_config, 'w') as f:
            print(config, file=f)

    main(config, args)