I downloaded the 0.5.1 nuget package for DeepSpeech, then set up a WPF project similar to the .Net example in the source. I also downloaded the 0.5.1 models from the appropriate release. I try to initialize with something like:
ds = new DeepSpeechClient.DeepSpeech();
ds.CreateModel(@“C:\Users???\Desktop\Deep Speech\deepspeech-0.5.1-models\output_graph.pbmm”, N_CEP, N_CONTEXT, @“C:\Users???\Desktop\Deep Speech\deepspeech-0.5.1-models\alphabet.txt”, BEAM_WIDTH);
When I hit that piece of the code I get a System.ArgumentException ‘Error incompatible model’. I’m not sure what this error means.
The model files are in the appropriate folder -
Any tips?