-
Notifications
You must be signed in to change notification settings - Fork 126
/
infer_contrast.py
27 lines (23 loc) · 1.31 KB
/
infer_contrast.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
26
27
import argparse
import functools
from mvector.predict import MVectorPredictor
from mvector.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/cam++.yml', '配置文件')
add_arg('use_gpu', bool, True, '是否使用GPU预测')
add_arg('audio_path1', str, 'dataset/a_1.wav', '预测第一个音频')
add_arg('audio_path2', str, 'dataset/b_2.wav', '预测第二个音频')
add_arg('threshold', float, 0.6, '判断是否为同一个人的阈值')
add_arg('model_path', str, 'models/CAMPPlus_Fbank/best_model/', '导出的预测模型文件路径')
args = parser.parse_args()
print_arguments(args=args)
# 获取识别器
predictor = MVectorPredictor(configs=args.configs,
model_path=args.model_path,
use_gpu=args.use_gpu)
dist = predictor.contrast(args.audio_path1, args.audio_path2)
if dist > args.threshold:
print(f"{args.audio_path1} 和 {args.audio_path2} 为同一个人,相似度为:{dist}")
else:
print(f"{args.audio_path1} 和 {args.audio_path2} 不是同一个人,相似度为:{dist}")