Acoustic training using SAPI 5.3 Speech API - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T14:18:13Zhttp://stackoverflow.com/feeds/question/299799http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/299799/acoustic-training-using-sapi-5-3-speech-api2Acoustic training using SAPI 5.3 Speech APImarkab2008-11-18T19:12:20Z2009-10-05T23:26:38Z
<p>Using Microsoft's SAPI 5.3 Speech API on Vista, how do you programatically do acoustic model training of a RecoProfile? More concretely, if you have a text file, and an audio file of a user speaking that text, what sequence of SAPI calls would you make to train the user's profile using that text and audio?</p>
http://stackoverflow.com/questions/299799/acoustic-training-using-sapi-5-3-speech-api/350363#3503631Answer by markab for Acoustic training using SAPI 5.3 Speech APImarkab2008-12-08T18:20:15Z2008-12-08T18:20:15Z<p>More information about this problem I still haven't solved:
You call ISpRecognizer2.SetTrainingState( TRUE, TRUE ) at "the beginning" and ISpRecognizer2.SetTrainingState( FALSE, TRUE ) at "the end." But it is still unclear just when those actions have to happen relative to other actions. </p>
<p>For example, you have to make various calls to set up a grammar with the text that matches your audio, and other calls to hook up the audio, and other calls to various objects to say "you're good to go now." But what are the interdependencies -- what has to happen before what else? And if you're using an audio file instead of the system microphone for input, does that make the relative timing less forgiving, because the recognizer isn't going to keep sitting there listening until the speaker gets it right?</p>
http://stackoverflow.com/questions/299799/acoustic-training-using-sapi-5-3-speech-api/462419#4624191Answer by richard for Acoustic training using SAPI 5.3 Speech APIrichard2009-01-20T18:12:48Z2009-01-20T18:12:48Z<p>Hello,
I am tryng to train my speech engine by passing the wav file using the following code in asp.net 3.5 and vista OS. </p>
<p>Code:</p>
<pre><code> recoClass = new SpeechLib.SpInprocRecognizerClass();
recoCxt = recoClass.CreateRecoContext();
recoClass.SetTrainingState(1, 1);
recoCxt.SetAdaptationData("the technology that allows us to control computers via speech is still very new");
input = new SpeechLib.SpFileStreamClass();
input.Open("C:\\Sample1.wav", SpeechLib.SpeechStreamFileMode.SSFMOpenForRead, false);
recoClass.AudioInputStream = input;
recoCxt.State = SpeechLib.SpeechRecoContextState.SRCS_Enabled;
recoClass.SetTrainingState(0, 1);
Console.ReadKey();
</code></pre>
<p>If anyone solved the problem, please post your solution here...</p>
<p>Thanks in advance...</p>
http://stackoverflow.com/questions/299799/acoustic-training-using-sapi-5-3-speech-api/1231563#12315631Answer by catalist4u for Acoustic training using SAPI 5.3 Speech APIcatalist4u2009-08-05T06:48:12Z2009-08-05T06:48:12Z<p>Can anyone tell me how to add my own trainings files into default SAPI trainings?</p>
<p>I want to add my own training scripts which are written in English but has meaning in other languge, like proper nouns.(Name, places). I want to add such script plus I also wants to add my custom words in SAPI 5.1. </p>
<p>I have successfully loaded an xml file without exception but the SAPI isn't recognizing my custom words</p>
<p>Is there any support in SAPI for Arabic language i.e SAPI recognize Arabic words and display it in English as an meaning less words in English.</p>
http://stackoverflow.com/questions/299799/acoustic-training-using-sapi-5-3-speech-api/1522908#15229081Answer by Eric Brown for Acoustic training using SAPI 5.3 Speech APIEric Brown2009-10-05T23:26:38Z2009-10-05T23:26:38Z<p>Implementing SAPI training is relatively hard, and the documentation doesn’t really tell you what you need to know. </p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms718576%28VS.85%29.aspx" rel="nofollow">ISpRecognizer2::SetTrainingState</a> switches the recognizer into or out of training mode. </p>
<p>When you go into training mode, all that really happens is that the recognizer gives the user a lot more leeway about recognitions. So if you’re trying to recognize a phrase, the engine will be a lot less strict about the recognition.</p>
<p>The engine doesn’t really do any adaptation until you leave training mode, and you have set the fAdaptFromTrainingData flag.</p>
<p>When the engine adapts, it scans the training audio stored under the profile data. It’s the training code’s responsibility to put new audio files where the engine can find it for adaptation.</p>
<p>These files also have to be labeled, so that the engine knows what was said.</p>
<p>So how do you do this? You need to use three lesser-known SAPI APIs. In particular, you need to get the profile token using <a href="http://msdn.microsoft.com/en-us/library/ms718612%28VS.85%29.aspx" rel="nofollow">ISpRecognizer::GetObjectToken</a>, and <a href="http://msdn.microsoft.com/en-us/library/ms718252%28VS.85%29.aspx" rel="nofollow">SpObjectToken::GetStorageFileName</a> to properly locate the file.</p>
<p>Finally, you also need to use <a href="http://msdn.microsoft.com/en-us/library/ms719553%28VS.85%29.aspx" rel="nofollow">ISpTranscript</a> to generate properly labeled audio files.</p>
<p>To put it all together, you need to do the following (pseudo-code):</p>
<p>Create an inproc recognizer & bind the appropriate audio input.</p>
<p>Ensure that you’re retaining the audio for your recognitions; you’ll need it later.</p>
<p>Create a grammar containing the text to train.</p>
<p>Set the grammar’s state to pause the recognizer when a recognition occurs. (This helps with training from an audio file, as well.)</p>
<p>When a recognition occurs:</p>
<p>Get the recognized text and the retained audio.</p>
<p>Create a stream object using CoCreateInstance(CLSID_SpStream).</p>
<p>Create a training audio file using <a href="http://msdn.microsoft.com/en-us/library/ms718612%28VS.85%29.aspx" rel="nofollow">ISpRecognizer::GetObjectToken</a>, and <a href="http://msdn.microsoft.com/en-us/library/ms718252%28VS.85%29.aspx" rel="nofollow">ISpObjectToken::GetStorageFileName</a> , and bind it to the stream (using <a href="http://msdn.microsoft.com/en-us/library/ms719484%28VS.85%29.aspx" rel="nofollow">ISpStream::BindToFile</a>).</p>
<p>Copy the retained audio into the stream object.</p>
<p>QI the stream object for the <a href="http://msdn.microsoft.com/en-us/library/ms719553%28VS.85%29.aspx" rel="nofollow">ISpTranscript</a> interface, and use <a href="http://msdn.microsoft.com/en-us/library/ms719554%28VS.85%29.aspx" rel="nofollow">ISpTranscript::AppendTranscript</a> to add the recognized text to the stream.</p>
<p>Update the grammar for the next utterance, resume the recognizer, and repeat until you’re out of training text.</p>