Commit
·
bbf650b
1
Parent(s):
6d8bf66
Update README.md
Browse files
README.md
CHANGED
|
@@ -125,10 +125,7 @@ The model is available for use in the NeMo toolkit [3], and can be used as a pre
|
|
| 125 |
|
| 126 |
```python
|
| 127 |
import nemo.collections.asr as nemo_asr
|
| 128 |
-
|
| 129 |
-
|
| 130 |
-
path = hf_hub_download(repo_id="nvidia/stt_en_conformer_ctc_large",filename="stt_en_conformer_large.nemo")
|
| 131 |
-
asr_model = nemo_asr.models.EncDecCTCModelBPE.restore_from(path)
|
| 132 |
```
|
| 133 |
|
| 134 |
### Transcribing using Python
|
|
|
|
| 125 |
|
| 126 |
```python
|
| 127 |
import nemo.collections.asr as nemo_asr
|
| 128 |
+
asr_model = nemo_asr.models.EncDecCTCModelBPE.from_pretrained("nvidia/stt_en_conformer_ctc_large")
|
|
|
|
|
|
|
|
|
|
| 129 |
```
|
| 130 |
|
| 131 |
### Transcribing using Python
|