forked from yeyupiaoling/MASR
-
Notifications
You must be signed in to change notification settings - Fork 0
/
eval.py
25 lines (20 loc) · 961 Bytes
/
eval.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import argparse
import functools
import time
from masr.trainer import MASRTrainer
from masr.utils.utils import add_arguments, print_arguments
parser = argparse.ArgumentParser(description=__doc__)
add_arg = functools.partial(add_arguments, argparser=parser)
add_arg('configs', str, 'configs/conformer_online_zh.yml', "配置文件")
add_arg("use_gpu", bool, True, "是否使用GPU评估模型")
add_arg('resume_model', str, 'models/conformer_online_fbank/best_model/', "模型的路径")
args = parser.parse_args()
print_arguments(args=args)
# 获取训练器
trainer = MASRTrainer(configs=args.configs, use_gpu=args.use_gpu)
# 开始评估
start = time.time()
loss, error_result = trainer.evaluate(resume_model=args.resume_model,
display_result=True)
end = time.time()
print('评估消耗时间:{}s,错误率:{:.5f}'.format(int(end - start), error_result))