I have a error that I am not sure how to fix.
The error is:
RuntimeError Traceback (most recent call last)
in
25
26 # Load the acoustic model
—> 27 ds = Model(MODEL_GRAPH, LM_ALPHABET, BEAM_WIDTH)
28 print(‘Loaded model’)
29
~\Documents\Anaconda\lib\site-packages\deepspeech_init_.py in init(self, *args, **kwargs)
43 status, impl = deepspeech.impl.CreateModel(*args, **kwargs)
44 if status != 0:
—> 45 raise RuntimeError(“CreateModel failed with error code {}”.format(status))
46 self._impl = impl
47
RuntimeError: CreateModel failed with error code 8192
Below is the variables used in the code that causes error.
MODEL_GRAPH = ‘models/output_graph.pb’
LM_ALPHABET = ‘models/alphabet.txt’
BEAM_WIDTH = 500