Open Source Voice Recognition Tool

Good evening, I am working on a project with Kinect, and I need to perform gender recognition using the voice information received by the sensor microphone. Recognition can also be textual, i.e. The suggestion specified by the user can always be the same. I "just" need the binary answer "male / female".

I checked the fairly popular open source Sphinx, but I canโ€™t figure out if it can be used for my needs.

Any idea what I could use?
Thanks in advance.

+3
source share
2 answers

For completeness, finally, I solved the recognition problem without analyzing voice input.

Gender can also be detected with reasonable accuracy by training and then classifying visual biometric features. I used speech recognition only as an โ€œinterfaceโ€ to activate the demo.

+2
source

There are several ways to achieve this. You can track the pitch (lower pitch values โ€‹โ€‹will be male, otherwise female). Or try building GMM (Sphinx cannot do this, but HTK can), with one model for men, another for women and another for children.

0
source

Source: https://habr.com/ru/post/917250/


All Articles