readme update
Browse files
README.md
CHANGED
|
@@ -196,18 +196,11 @@ The model is available for use in the NeMo toolkit [3], and can be used as a pre
|
|
| 196 |
|
| 197 |
### Automatically instantiate the model
|
| 198 |
|
| 199 |
-
Using [NVIDIA NeMo](https://github.com/NVIDIA/NeMo):
|
| 200 |
```python
|
| 201 |
import nemo.collections.asr as nemo_asr
|
| 202 |
asr_model = nemo_asr.models.EncDecCTCModelBPE.from_pretrained(model_name="nvidia/parakeet-ctc-1.1b")
|
| 203 |
```
|
| 204 |
|
| 205 |
-
Using [Transformers](https://github.com/huggingface/transformers) 🤗
|
| 206 |
-
```python
|
| 207 |
-
from transformers import AutoModelForCTC
|
| 208 |
-
model = AutoModelForCTC.from_pretrained("nvidia/parakeet-ctc-1.1b")
|
| 209 |
-
```
|
| 210 |
-
|
| 211 |
### Transcribing using NeMo
|
| 212 |
First, let's get a sample
|
| 213 |
```
|
|
|
|
| 196 |
|
| 197 |
### Automatically instantiate the model
|
| 198 |
|
|
|
|
| 199 |
```python
|
| 200 |
import nemo.collections.asr as nemo_asr
|
| 201 |
asr_model = nemo_asr.models.EncDecCTCModelBPE.from_pretrained(model_name="nvidia/parakeet-ctc-1.1b")
|
| 202 |
```
|
| 203 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 204 |
### Transcribing using NeMo
|
| 205 |
First, let's get a sample
|
| 206 |
```
|