我开发了一个使用 mfcc 和隐藏马尔可夫模型进行声音识别的概念验证系统。当我在已知声音上测试系统时,它给出了有希望的结果。尽管系统在输入未知声音时返回最接近匹配的结果,并且得分不是那么明显,但它是未知声音,例如:
我已经训练了 3 个隐藏马尔可夫模型,一个用于语音,一个用于从水龙头流出的水,一个用于敲桌子。然后我在看不见的数据上测试它们并得到以下结果:
input: speech
HMM\knocking: -1213.8911146444477
HMM\speech: -617.8735676792728
HMM\watertap: -1504.4735097322673
So highest score speech which is correct
input: watertap
HMM\knocking: -3715.7246152783955
HMM\speech: -4302.67960438553
HMM\watertap: -1965.6149147201534
So highest score watertap which is correct
input: knocking
HMM\filler -806.7248912250212
HMM\knocking: -756.4428782636676
HMM\speech: -1201.686687761133
HMM\watertap: -3025.181144273698
So highest score knocking which is correct
input: unknown
HMM\knocking: -4369.1702184688975
HMM\speech: -5090.37122832872
HMM\watertap: -7717.501505674925
Here the input is an unknown sound but it still returns the closest match as there is no system for thresholding/garbage filtering.
我知道在关键字发现中,可以使用垃圾或填充模型过滤掉 OOV(词汇表外)声音,但它说它是使用一组有限的未知单词进行训练的,而这不能像我一样应用于我的系统不知道系统可能记录的所有声音。
语音识别系统中的类似问题如何解决?以及如何解决我的问题以避免误报?