transiteration commited on
Commit
fd26c06
1 Parent(s): caa03b8

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -0
README.md CHANGED
@@ -38,6 +38,10 @@ import nemo.collections.asr as nemo_asr
38
  asr_model = nemo_asr.models.EncDecCTCModel.restore_from(restore_path="stt_kz_quartznet15x5.nemo")
39
  ```
40
  #### How to Transcribe Single Audio File
 
 
 
 
41
  ```
42
  asr_model.transcribe(['sample_kz.wav'])
43
  ```
 
38
  asr_model = nemo_asr.models.EncDecCTCModel.restore_from(restore_path="stt_kz_quartznet15x5.nemo")
39
  ```
40
  #### How to Transcribe Single Audio File
41
+ We can get a sample audio to test the model:
42
+ ```
43
+ wget https://asr-kz-example.s3.us-west-2.amazonaws.com/sample_kz.wav
44
+ ```
45
  ```
46
  asr_model.transcribe(['sample_kz.wav'])
47
  ```