“ 鸡尾酒会问题”(cocktail party problem)
Posted -柚子皮-
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了“ 鸡尾酒会问题”(cocktail party problem)相关的知识,希望对你有一定的参考价值。
Introduction
“ 鸡尾酒会问题”(cocktail party problem)是在计算机语音识别领域的一个问题,当前语音识别技术已经可以以较高精度识别一个人所讲的话,但是当说话的人数为两人或者多人时,语音识别率就会极大的降低,这一难题被称为鸡尾酒会问题。
解决方案
斯坦福大学的Andrew NG教授的机器学习公开课(http://v.163.com/special/opencourse/machinelearning.html)(ml-class.org)
在第一章unsupervised learning那段视频里解决鸡尾酒会问题(cocktail party problem)就写了一行代码:
[W,s,v] = svd ((repmat(sum(x.*x,1),size(x,1),1).*x)*x');
用fastICA算法可以比较好地解决http://research.ics.tkk.fi/ica/fastica/。
http://www.endolith.com/wordpress/2009/11/22/a-simple-fastica-example/ 是一个分离音乐的例子,效果比较明显。用的就是fastICA的python实现。不过好像用来解决cocktail party problem的话效果不太好。
Blind Source Separation of recorded speech and music signals:http://cnl.salk.edu/~tewon/Blind/blind_audio.html
from:
以上是关于“ 鸡尾酒会问题”(cocktail party problem)的主要内容,如果未能解决你的问题,请参考以下文章
学习笔记 | NIPS 2021 regularization cocktail 调优的 MLPs 在表格数据上优于 GBDTs | Regularization is All Your Need