Home › Forums › OpenEars › Increasing speech recognition accuracy using a custom languagemodel? › Reply To: Increasing speech recognition accuracy using a custom languagemodel?
I am having trouble getting saveThatWave to work.
1) I added SaveThatWaveDemo.framework to the “Frameworks” folder in the OpenEarSample App.
2) In ViewController.h, I added:
#import <SaveThatWaveDemo/OEEventsObserver+SaveThatWave.h>
#import <SaveThatWaveDemo/SaveThatWaveController.h>
@property (strong, nonatomic) SaveThatWaveController *saveThatWaveController;
3) In ViewController.m, I added:
@synthesize saveThatWaveController;
Everything complied perfectly until this point.
Then when I added this line to ViewDidLoad:
self.saveThatWaveController = [[SaveThatWaveController alloc] init];
It threw a “linker command failed with exit code 1 (use -v to see invocation)” error.
Do you have any idea why this is not working? I would like to make a test-case for the “three five five” example above. Thanks!