devmehendale
commited on
Commit
•
ca37d62
1
Parent(s):
9c4a983
Update README.md
Browse files
README.md
CHANGED
@@ -37,6 +37,9 @@ library_name: nemo
|
|
37 |
## Usage
|
38 |
Download and load the model from Huggingface.
|
39 |
```
|
|
|
|
|
|
|
40 |
model = nemo_asr.models.ASRModel.from_pretrained("ai4bharat/indicconformer_stt_pa_hybrid_rnnt_large")
|
41 |
|
42 |
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
|
|
|
37 |
## Usage
|
38 |
Download and load the model from Huggingface.
|
39 |
```
|
40 |
+
import torch
|
41 |
+
import nemo.collections.asr as nemo_asr
|
42 |
+
|
43 |
model = nemo_asr.models.ASRModel.from_pretrained("ai4bharat/indicconformer_stt_pa_hybrid_rnnt_large")
|
44 |
|
45 |
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
|