Instructions to use nvidia/stt_pt_fastconformer_hybrid_large_pc with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- NeMo
How to use nvidia/stt_pt_fastconformer_hybrid_large_pc with NeMo:
import nemo.collections.asr as nemo_asr asr_model = nemo_asr.models.ASRModel.from_pretrained("nvidia/stt_pt_fastconformer_hybrid_large_pc") transcriptions = asr_model.transcribe(["file.wav"]) - Notebooks
- Google Colab
- Kaggle
Error while trying to finetune via Nemo speech_to_text_finetune.py
#1
by Eyalo - opened
The model does not load when trying to finetune with the speech_to_text_finetune.py script from Nemo framework, due to empty values and incorrect handling of missing values in the code before they are overriden.
workaround:
- untar .nemo file
- edit the model_config.yaml
replace '???' values in [train_ds: manifest_filepath, validation_ds:manifest_filepath, test_ds:manifest_filepath ] with
- - /some/path
replace '???' for tokenizer: dir path with/some/path
- tar files back to a .nemo file and use it