I am converting audio to text using sphinx, and I can't find how to access the confidence score for each word
I am able to access the transcription output, but I can't get the estimated probabilities behind the model. This feels basic, but I can't find the proper documentation. What should I add to the below?
test = sr.AudioFile(audio_file)
Recon = sr.Recognizer()
with test as source:
test_audio = Recon.record(source)
text = Recon.recognize_sphinx(test_audio,language = 'en-US')```