tag:blogger.com,1999:blog-3803541356848955053.post4817207069288228777..comments2013-12-13T02:05:53.553-08:00Comments on YJL: Trying out the CMU SphinxYu-Jie Linhttps://plus.google.com/115422682039760465813[email protected]Blogger7125tag:blogger.com,1999:blog-3803541356848955053.post-27184698054314456332009-07-21T16:22:43.724-07:002009-07-21T16:22:43.724-07:00We are trying to use pocket sphinx to place text i...We are trying to use pocket sphinx to place text into a website text box on a mobile phone when a person speaks a word. We&#39;re getting nowhere. Can pocket sphinx do this and if so how?hjhhttp://www.blogger.com/profile/00975571690951181909[email protected]tag:blogger.com,1999:blog-3803541356848955053.post-31239257090924254612009-05-31T08:59:15.893-07:002009-05-31T08:59:15.893-07:00Thank u very much i am workin in that ,,,will get ...Thank u very much i am workin in that ,,,will get back to u soon :)Harsha K Nhttp://www.blogger.com/profile/01183768177558118449[email protected]tag:blogger.com,1999:blog-3803541356848955053.post-7933605780409659432009-05-28T10:15:03.046-07:002009-05-28T10:15:03.046-07:00Have you check out Sphinx&#39; sample code? Do wha...Have you check out <a href="http://www.speech.cs.cmu.edu/cmusphinx/moinmoin/GStreamer" rel="nofollow">Sphinx&#39; sample code</a>? Do what it does.livibetterhttp://www.blogger.com/profile/02968836669016971463[email protected]tag:blogger.com,1999:blog-3803541356848955053.post-24832517625475638592009-05-28T06:54:37.921-07:002009-05-28T06:54:37.921-07:00Hi I am Harsha,I am working on Pocket sphinx, I ha...Hi I am Harsha,<br><br>I am working on Pocket sphinx, I have instaled an4,sphinxtrain,sphinxbase,pocket sphinx on my linux machine.<br>but i donno wat to do next, how to get the speech recognition going, do i need to wrte drivers for mic(audio) pls help me<br><br>Thanks in advance:)Harsha K Nhttp://www.blogger.com/profile/01183768177558118449[email protected]tag:blogger.com,1999:blog-3803541356848955053.post-26338837191388212292009-02-26T07:18:00.000-08:002009-02-26T07:18:00.000-08:00The easiest thing you can do is to use the -cmnini...The easiest thing you can do is to use the -cmninit configuration parameter. This accepts a vector of numbers which is used to normalize the acoustic features. In batch mode this is estimated based on the entire utterance, which gives a pretty good estimate. But when recognizing on the fly it&#39;s based on past samples of audio, which means that it can start out quite inaccurate, and then converges to a good estimate over time.<br><br>In C, what you can do (and I think gnome-voice-control does this) is to save the estimated normalization vector from previous sessions and use it to initialize the decoder. This isn&#39;t available in the Python interface since it&#39;s buried in a few layers of API, unfortunately.<br><br>However if you look at the logging information that PocketSphinx prints out you will see something like:<br><br>CMN: 48.92 4.3 -0.4 ...<br><br>You can use these numbers (comma-separated) as the -cmninit argument. It will only be good for your specific microphone and sound card though.dhdhttp://www.blogger.com/profile/08063817768889382546[email protected]tag:blogger.com,1999:blog-3803541356848955053.post-28685791144038869902009-02-25T09:25:00.000-08:002009-02-25T09:25:00.000-08:00@dhd Is that mean if I let decoder keep running an...@dhd Is that mean if I let decoder keep running and don&#39;t end_utt, that will make it better?<br><br>How does it collect data and what does it collect? While collecting should we remain silence and only allow background noise through microphone?<br><br>If I end_utt and start_utt again, will the previous collected data in last session apply on new session?<br><br>Could you describe what conditions or procedures that I can make on-the-fly recognition more accurate?livibetterhttp://www.blogger.com/profile/02968836669016971463[email protected]tag:blogger.com,1999:blog-3803541356848955053.post-14677702406426922602009-02-25T08:09:00.000-08:002009-02-25T08:09:00.000-08:00The problem people usually encounter with on-the-f...The problem people usually encounter with on-the-fly recognition is that the first few things you speak to it are frequently poorly recognized. This is because it needs to collect some data in order to normalize the audio input for your particular microphone.<br><br>This is actually a bit different from training or speaker adaptation, something we hope to make easier soon...dhdhttp://www.blogger.com/profile/08063817768889382546[email protected]