Fix the model class name EncDecCTCBPEModel -> EncDecCTCModelBPE (#1)
Browse files- Fix the model class name EncDecCTCBPEModel -> EncDecCTCModelBPE (53b7343dadfd6bc731bd3b86bd93767e674b8ec4)
Co-authored-by: Peter Plantinga <[email protected]>
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
|