SKostandian commited on
Commit
974095d
·
verified ·
1 Parent(s): f686680

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -1
README.md CHANGED
@@ -77,7 +77,8 @@ asr_model = nemo_asr.models.EncDecHybridRNNTCTCBPEModel.from_pretrained(model_na
77
  ### Transcribing using Python
78
  Simply do:
79
  ```
80
- asr_model.transcribe(['common_voice_ka_36843775.wav'])
 
81
  ```
82
  ### Transcribing many audio files
83
 
 
77
  ### Transcribing using Python
78
  Simply do:
79
  ```
80
+ output = asr_model.transcribe(['common_voice_ka_36843775.wav'])
81
+ print(output[0].text)
82
  ```
83
  ### Transcribing many audio files
84