Phone number and date of birth from human speech

Is there an efficient natural language processor that can display the phone number and date of birth from human speech. Each user has a different way to indicate the phone number and date of birth. Consequently, converting speech to text and then analyzing the text for the phone number does not help.

+7
nlp speech-recognition speech-to-text
source share
3 answers

You can use google speech for api text. I used the same to enter the account number for the blind. I worked at a bank, so I used a lot of numbers, for example, account number, card number, etc.

With the Google STT engine, you can define custom voice inputs.

In addition, I created a feedback mechanism using Text to Speech Api so that the application can determine if user feedback is incorrect and ask him to talk again.

You can see the code snippet on github. https://github.com/hiteshsahu/Android-TTS-STT

+4
source share

The easiest way is to extract text from speech, many tools , a proprietary (nuance) and friendly open source source such as sphinx, and many tools for extracting dates and phones, expressed in different ways. IBM Watson offers one beta of Smart Formatting for consistent dates and phones in its own transcripts. To guess which dates are birthdays, you are trying to find nearby keywords (birth, birth, and so on) nearby.

For a few free alternatives check

For phone #

https://www.npmjs.com/package/phone-number-extractor

https://github.com/googlei18n/libphonenumber

To retrieve the date, check the previous questions.

Extract dates from text in Java

Best way to determine and extract dates from Python text?

There is a patent for the process you are asking for, but you may have to pay royalties or something else. http://www.freepatentsonline.com/8416928.html

+2
source share

If you want to get the phone number and date of birth from human speech.

So, you can use another option and implement it.

https://cloud.google.com/speech/

This API is really useful for converting your speech to text. I also have this problem at one point so you can try too.

Another API that is really good for authentication.

https://api.ai/

Hope this helps you.

+1
source share

All Articles