We define verification models as ASR models specifically designed to assess the reliability of transcriptions. These models are particularly useful when no reference transcription is available, as they can generate hypotheses with a certain degree of confidence.
The core idea behind verification models is to train or fine-tune two or more ASR models on different datasets. If these models produce identical transcriptions for the same audio input, the result is likely to be accurate. Furthermore, if a verification model agrees with an existing reference transcription, this agreement can also be interpreted as a signal of reliability.
In this model card, we present Verification Model B for Catalan, available as "catalan-verification-model-pkt-b". This acoustic model is based on "nvidia/parakeet-rnnt-1.1b" and is designed for Automatic Speech Recognition in Catalan. It is intended to be used in tandem with Verification Model A, "catalan-verification-model-pkt-a", to enable cross-verification and boost transcription confidence in unannotated or weakly supervised scenarios.
The datasets used to train models A and B were partitioned between the two models using the following pseudocode:
bash
101: dataset_A = list
202: dataset_B = list
303: for index, recording in training_corpus:
404: {505: if index is an even number:
606: {707: dataset_A=dataset_A+recording[index]808: }909: else:
1010: {1111: dataset_B=dataset_B+recording[index]1212: }1313: }
Intended Uses and Limitations
This model is designed for the following scenarios:
Verification of transcriptions: When two or more verification models produce the same output for a given audio segment, the transcription can be considered highly reliable. This is particularly useful in low-resource or weakly supervised settings.
Transcription without references: In situations where no reference transcription exists, this model can still produce a hypothesis that, when corroborated by a second verification model, may be considered trustworthy.
Data filtering and quality control: It can be used to automatically detect and retain high-confidence segments in large-scale speech datasets (e.g., for training or evaluation purposes).
Human-in-the-loop workflows: These models can assist human annotators by flagging reliable transcriptions, helping reduce manual verification time.
As limitations, we identify the following:
No ground-truth guarantee: Agreement between models does not guarantee correctness; it only increases the likelihood of reliability.
Domain sensitivity: The accuracy and agreement rate may drop if used on speech data that differs significantly from the training domain (e.g., different accents, topics, or recording conditions).
Designed for pairwise comparison: This model is intended to work in conjunction with at least one other verification model. Using it in isolation does not provide verification benefits.
Language and model-specific: This particular model is optimized for Catalan and based on the Parakeet RNNT architecture. Performance in other languages or under different acoustic models may vary significantly.
How to Get Started with the Model
To see an updated and functional version of this code, please visit NVIDIA's official repository