Fix the model class name EncDecCTCBPEModel -> EncDecCTCModelBPE
#1
by
pplantinga
- opened
README.md
CHANGED
@@ -197,7 +197,7 @@ The model is available for use in the NeMo toolkit [3], and can be used as a pre
|
|
197 |
|
198 |
```python
|
199 |
import nemo.collections.asr as nemo_asr
|
200 |
-
asr_model = nemo_asr.models.
|
201 |
```
|
202 |
|
203 |
### Transcribing using Python
|
|
|
197 |
|
198 |
```python
|
199 |
import nemo.collections.asr as nemo_asr
|
200 |
+
asr_model = nemo_asr.models.EncDecCTCModelBPE.from_pretrained(model_name="nvidia/parakeet-ctc-1.1b")
|
201 |
```
|
202 |
|
203 |
### Transcribing using Python
|