SKostandian commited on
Commit
249cf5b
·
verified ·
1 Parent(s): f502c2f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -1
README.md CHANGED
@@ -82,7 +82,8 @@ asr_model = nemo_asr.models.EncDecHybridRNNTCTCBPEModel.from_pretrained(model_na
82
  ### Transcribing using Python
83
  Having instantiated the model, simply do:
84
  ```
85
- asr_model.transcribe([path_to_audio_file])
 
86
  ```
87
 
88
  ### Transcribing many audio files
 
82
  ### Transcribing using Python
83
  Having instantiated the model, simply do:
84
  ```
85
+ output = asr_model.transcribe(['sample.wav'])
86
+ print(output[0].text)
87
  ```
88
 
89
  ### Transcribing many audio files