Update README.md
Browse files
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([
|
|
|
|
| 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
|