Picovoice / cheetah

On-device streaming speech-to-text engine powered by deep learning

Home Page:https://picovoice.ai/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Can the output be normal case, rather than all uppercase?

bret152 opened this issue · comments

commented

I noticed in your demo video, and when I set up cheetah and tried it, that the output is in ALL CAPS.

I am looking for a solution that would give me speech to text for document creation purposes. ALL CAPS is not useful as it would have to be processed to put it in to normal casing.

Is there an option to make cheetah output the text with normal casing and capitalization?

Once you've got the transcript from Cheetah, you can capitalise the text yourself using python.

Maybe you could use:
"\n".join([sentence.capitalize() for sentence in transcript.split("\n")])

The current version gives out case-insensitive output. You can give it some style using comment above if you like.