NVIDIA
NVIDIA
STT It FastConformer Hybrid Transducer-CTC Large P&C
Model
NVIDIA
NVIDIA
STT It FastConformer Hybrid Transducer-CTC Large P&C

This collection contains the large version (120M) of the Italian speech recognition model with a FastConformer encoder and a Hybrid decoder (joint Transducer-CTC). The model has a vocab size of 512 and emits text with punctuation and capitalization.

Model Overview

This collection contains large size versions of Hybrid FastConformer Transducer-CTC (around 120M parameters) trained on NeMo ASRSet with around 500 hours of Italian speech.

It utilizes a Google SentencePiece [1] tokenizer with vocabulary size 512, and transcribes speech in upper and lower case Italian alphabet along with spaces, periods, commas, question marks and apostrophes.

Model Architecture

FastConformer is an optimized version of the Conformer model [2] with 8x depthwise-separable convolutional downsampling. The model is trained in a multitask setup with joint Transducer and CTC decoder loss. You may find more information on the details of FastConformer here: Fast-Conformer Model and about Hybrid Transducer-CTC training here: Hybrid Transducer-CTC

Training

The NeMo toolkit [3] was used for training the models for over several hundred epochs. These model are trained with this example script and this base config.

The tokenizers for these models were built using the text transcripts of the train set with this script.

Datasets

All the models in this collection are trained on a composite dataset (NeMo ASRSET) comprising of 487 hours of Italian speech:

  • Mozilla Common Voice 12.0 (Italian) - 220 hours after data cleaning. Speech Data Processor config used to prepare this data is here.
  • Multilingual LibriSpeech (Italian) - 214 hours after data cleaning. Speech Data Processor config used to prepare this data is here.
  • VoxPopuli transcribed subset (Italian) - 53 hours after data cleaning. Speech Data Processor config used to prepare this data is here.

Tokenizer Construction

The tokenizer for this model was built using text corpus provided with the train dataset.

We build a Google Sentencepiece Tokenizer [1] with the following script :

python [NEMO_GIT_FOLDER]/scripts/tokenizers/process_asr_text_tokenizer.py \
  --manifest="train_manifest.json" \
  --data_root="<OUTPUT DIRECTORY FOR TOKENIZER>" \
  --vocab_size=512 \
  --tokenizer="spe" \
  --spe_type="bpe" \
  --spe_character_coverage=1.0 \
  --no_lower_case \
  --log

Performance

The list of the available models in this collection is shown in the following table. Performances of the ASR models are reported in terms of Word Error Rate (WER%) with greedy decoding. We report WER with punctuation and capitalization (with P&C) as well as when punctuation and capitalization is removed from both predicted and target text (no P&C). The tables below contain results using both Transducer and CTC decoders.

No P&C

DecoderMCV 12.0 DevMCV 12.0 TestMLS DevMLS TestVoxPopuli DevVoxPopuli Test
Transducer5.195.6413.0111.3913.0216.22
CTC5.636.0914.1812.0413.7016.77

With P&C

DecoderMCV 12.0 DevMCV 12.0 TestMLS Dev*MLS Test*VoxPopuli DevVoxPopuli Test
Transducer7.708.1121.6918.2716.9619.97
CTC8.058.4622.3618.8617.5220.41

* We use only a subset of dev/test sets with P&C restored from the original books

How to Use this Model

The model is available for use in the NeMo toolkit [3], and can be used as a pre-trained checkpoint for inference or for fine-tuning on another dataset.

Automatically load the model from NGC

import nemo.collections.asr as nemo_asr
asr_model = nemo_asr.models.EncDecHybridRNNTCTCBPEModel.from_pretrained("stt_it_fastconformer_hybrid_large_pc")

Transcribing text with this model

With Transducer decoder:

python [NEMO_GIT_FOLDER]/examples/asr/transcribe_speech.py \
  pretrained_name="stt_it_fastconformer_hybrid_large_pc" \
  audio_dir="<DIRECTORY CONTAINING AUDIO FILES>"

With CTC decoder:

python [NEMO_GIT_FOLDER]/examples/asr/transcribe_speech.py \
  pretrained_name="stt_it_fastconformer_hybrid_large_pc" \
  decoder_type=ctc \
  audio_dir="<DIRECTORY CONTAINING AUDIO FILES>" \

Input

This model accepts 16 KHz Mono-channel Audio (wav files) as input.

Output

This model provides transcribed speech as a string for a given audio sample.

Limitations

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. The model only outputs the following punctuation marks: '.', ',', '?' and hence might not do well in scenarios where other punctuation marks are expected.

References

[1] Google Sentencepiece Tokenizer

[2] Conformer: Convolution-augmented Transformer for Speech Recognition

[3] NVIDIA NeMo Toolkit

Licence

License to use this model is covered by the CC-BY-4 License 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 CC-BY-4 License.

Publisher
NVIDIA
NVIDIA
Latest Version1.20.0
UpdatedJuly 21, 2023 UTC
Compressed Size402.03 MB

NVIDIA uses cookies to improve your experience on our web site. We and our third-party partners also use cookies and other tools to collect and record information you provide as well as information about your interactions with our websites for performance improvement, analytics, and to assist in marketing efforts. By clicking "Accept All", you consent to our use of cookies and other tools as described in our Cookie Policy. You can manage your cookie settings by clicking on "Manage Settings." By continuing to use this site or by clicking one of the buttons below, you agree to our Terms of Service (which contains important waivers). Please see our Privacy Policy for more information on our privacy practices.