SKostandian commited on
Commit
cd32f63
·
verified ·
1 Parent(s): b8be02b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -1
README.md CHANGED
@@ -91,7 +91,8 @@ asr_model = nemo_asr.models.EncDecHybridRNNTCTCBPEModel.from_pretrained(model_na
91
  ### Transcribing using Python
92
  Simply do:
93
  ```
94
- asr_model.transcribe(['audio_file.wav'])
 
95
  ```
96
 
97
  ### Transcribing many audio files
 
91
  ### Transcribing using Python
92
  Simply do:
93
  ```
94
+ output = asr_model.transcribe(['audio_file.wav'])
95
+ print(output[0].text)
96
  ```
97
 
98
  ### Transcribing many audio files