When I blow air or make some noises near my phone then also some random words from my text file is being printed.
How can I avoid such noises or utterances? Is it possible with Rejecto?
One more thing while using Rejecto we have to replace:
NSError *err = [lmGenerator generateLanguageModelFromArray:words withFilesNamed:name forAcousticModelAtPath:[AcousticModel pathToModel:@”AcousticModelEnglish”]];
by:
NSError *err = [lmGenerator generateRejectingLanguageModelFromArray:words
withFilesNamed:name
withOptionalExclusions:nil
usingVowelsOnly:FALSE
withWeight:nil
forAcousticModelAtPath:[AcousticModel pathToModel:@”AcousticModelEnglish”]]; // Change “AcousticModelEnglish” to “AcousticModelSpanish” to create a Spanish Rejecto model.
But I have used a “someName.txt” file in which I have declared my words. So how is it possible to reject the words which I want to? Please I am not getting this Rejecto thing . Please explain me .
Thank you in advance.