Automatic Speech Recognition
NeMo
PyTorch
English
speech
audio
FastConformer
Conformer
NeMo
hf-asr-leaderboard
ctc
Eval Results

Wrong Usage Description

#1
by Lukas98T - opened

Hello NVIDIA-Team,

you got the Usage Description wrong on the Model card
Instead of:

import nemo.collections.asr as nemo_asr
asr_model = nemo_asr.models.EncDecCTCBPEModel.from_pretrained(model_name="nvidia/parakeet-ctc-0.6b")

it should be:

import nemo.collections.asr as nemo_asr
asr_model = nemo_asr.models.EncDecCTCModelBPE.from_pretrained(model_name="nvidia/parakeet-ctc-0.6b")

For the other models like the tdt version it's correct, but the ctc models have switched naming in NeMo (BPEModel <-> ModelBPE)

  • EncDecRNNTBPEModel
  • EncDecCTCModelBPE

Sign up or log in to comment