Automatic Speech Recognition
NeMo
PyTorch
automatic-speech-translation
speech
audio
Transformer
FastConformer
Conformer
NeMo
hf-asr-leaderboard
Eval Results (legacy)
Eval Results
Instructions to use nvidia/canary-1b-v2 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- NeMo
How to use nvidia/canary-1b-v2 with NeMo:
import nemo.collections.asr as nemo_asr asr_model = nemo_asr.models.ASRModel.from_pretrained("nvidia/canary-1b-v2") transcriptions = asr_model.transcribe(["file.wav"]) - Notebooks
- Google Colab
- Kaggle
Update README.md
#1
by aotrih - opened
README.md
CHANGED
|
@@ -1887,7 +1887,7 @@ The model is available for use in the NeMo toolkit [6], and can be used as a pre
|
|
| 1887 |
#### Automatically instantiate the model
|
| 1888 |
|
| 1889 |
```python
|
| 1890 |
-
from nemo.collections.asr import ASRModel
|
| 1891 |
asr_ast_model = ASRModel.from_pretrained(model_name="nvidia/canary-1b-v2")
|
| 1892 |
```
|
| 1893 |
|
|
|
|
| 1887 |
#### Automatically instantiate the model
|
| 1888 |
|
| 1889 |
```python
|
| 1890 |
+
from nemo.collections.asr.models import ASRModel
|
| 1891 |
asr_ast_model = ASRModel.from_pretrained(model_name="nvidia/canary-1b-v2")
|
| 1892 |
```
|
| 1893 |
|