SKostandian commited on
Commit
44edb27
·
verified ·
1 Parent(s): 403f3a1

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -1
README.md CHANGED
@@ -133,7 +133,8 @@ asr_model = nemo_asr.models.ASRModel.from_pretrained(model_name="nvidia/parakeet
133
  ### Transcribing using Python
134
  Simply do:
135
  ```
136
- asr_model.transcribe(['speech.wav'])
 
137
  ```
138
 
139
  ### Transcribing many audio files
 
133
  ### Transcribing using Python
134
  Simply do:
135
  ```
136
+ output = asr_model.transcribe(['speech.wav'])
137
+ print(output[0].text)
138
  ```
139
 
140
  ### Transcribing many audio files