Conformer-CTC model which was fine-tuned from English language to Spanish. We took a model trained on over 7,000 hours of English speech. Then we changed the model's decoder to output characters from the Spanish alphabet and fine-tuned this model using Spanish portions of the Mozilla CommonVoice (MCV7.0) [2], Multilingual LibriSpeech (MLS) [3], and Voxpopuli [4] training sets, as well as a subset of the Spanish Fisher dataset [5, 6]. This amounted to 1,340 hours of Spanish training data.
It utilizes a Google SentencePiece [7] tokenizer with vocabulary size 1024, and transcribes text in lower case Spanish alphabet characters.
Conformer-CTC model is a non-autoregressive variant of Conformer model [1] for Automatic Speech Recognition which uses CTC loss/decoding instead of Transducer. You may find more info on the detail of this model here: Conformer-CTC Model.
The NeMo toolkit [8] was used for training this model over several hundred epochs on multiple GPUs.
While finetuning this model, we used the following datasets:
The tokenizer for this model was built using the text that was in the training set.
We build a Google Sentencepiece Tokenizer with the following script:
python [NEMO_GIT_FOLDER]/scripts/process_asr_text_tokenizer.py \
--manifest="train_manifest.json" \
--data_root="<OUTPUT DIRECTORY FOR TOKENIZER>" \
--vocab_size=1024 \
--tokenizer="spe" \
--spe_type="unigram" \
--spe_character_coverage=1.0 \
--no_lower_case \
--log
The performance of Automatic Speech Recognition models is measuring using Word Error Rate.
The model obtains the following greedy scores on the following evaluation datasets:
We also evaluated the model performance with beam search with a 4-gram KenLM model (included with this NGC model). The KenLM model was trained on the transcriptions of the Spanish speech data used to finetune the ASR model, and also a dataset of Spanish news text (about 50 million sentences) from the WMT competition's News Crawl corpus [11].
The following results were obtained with beam search with the 4-gram KenLM model, using hyperparameters alpha = 0.8, beta = 1.5, beam width = 128.
The model is available for use in the NeMo toolkit [5], and can be used as a pre-trained checkpoint for inference or for fine-tuning on another dataset.
import nemo.collections.asr as nemo_asr
asr_model = nemo_asr.models.EncDecCTCModelBPE.from_pretrained(model_name="stt_es_conformer_ctc_large")
python [NEMO_GIT_FOLDER]/examples/asr/transcribe_speech.py \
pretrained_name="stt_es_conformer_ctc_large" \
audio_dir=""
This model accepts 16000 Hz Mono-channel Audio (wav files) as input.
This model provides transcribed speech as a string for a given audio sample.
Since this model was trained on publically available speech datasets, the performance of this model might degrade for speech which includes technical terms, or vernacular that the model has not been trained on. The model might also perform worse for accented speech.
[1] Conformer: Convolution-augmented Transformer for Speech Recognition
[2] Mozilla CommonVoice (MCV7.0)
[3] Multilingual LibriSpeech (MLS)
[5] Fisher Spanish - Transcripts
[7] Google Sentencepiece Tokenizer
[9] CALLHOME Spanish Transcripts
[11] WMT competition text datasets
License to use this model is covered by the NGC TERMS OF USE unless another License/Terms Of Use/EULA is clearly specified. By downloading the public and release version of the model, you accept the terms and conditions of the NGC TERMS OF USE.