Edit model card

Model Card for NoRefER

Referenceless Error Metric for Automatic Speech Recognition
via Contrastive Fine-Tuning of mMiniLMv2 without References

Model Details

How to use

import re
from transformers import AutoTokenizer, AutoModel

def preprocess(text: str):
  text = text.lower()
  text = re.sub(r'[\(\[].*?[\)\]]', '', text)
  text = re.sub(r'[^\w\s]', '', text)
  return text

tokenizer = AutoTokenizer.from_pretrained("aixplain/NoRefER")
model = AutoModel.from_pretrained("aixplain/NoRefER", trust_remote_code=True)

# preprocess
texts = [
    "In Italy, pizza served in formal settings, such as at a restaurant, is presented unsliced.",
    "In Italy, pizzas serves in formal settings, such as at an restaurant, is presented unslicing."
]
preprocessed_texts = [preprocess(text) for text in texts]
# tokenize
tokens = tokenizer(preprocessed_texts, padding=True, return_tensors="pt")
# score
scores = model.score(**tokens)

Model Description

This work presents a novel multi-language referenceless quality metric for automatic speech recognition (ASR). The metric is based on a language model (LM) trained with contrastive-learning and without references indicating the quality. Instead, the known order of quality in-between increasing compression levels of the same ASR model is used for self-supervision. All unique pair combinations are extracted from the outputs of ASR models in multiple compression levels to compile a dataset for model training and validation. The LM is part of a siamese network architecture (with shared weights) for giving pair-wise ranking decisions considering the ASR output quality. The referenceless metric achieves 77% validation accuracy in this pair-wise ranking task and can generalize for quality comparisons in-between different ASR models. When experimented on a blind test dataset consisting of outputs of top commercial ASR engines, it has been observed that the referenceless metric has a high correlation with word-error-rate (WER) ranks of them across samples, and can outperform the best engine's WER by +7% via selecting among alternative hypotheses. The referenceless metric is compared against the perplexity metric from various state-of-art pre-trained LM(s) and obtained superior performance in all experiments. The referenceless metric allows comparing the performance of different ASR models on a speech dataset that lacks ground-truth references. It also enables obtaining an ensemble of ASR models that can outperform any individual model in the ensemble. Finally, it can be used to prioritize hypotheses for referencing (via post-editing) or human-evaluation processes within ASR model improvement lifecycle in production, and for A/B testing different versions of an ASR model (such as previous and current) on a referenceless production data stream.

  • Developed by: aiXplain AI Lab
  • Language(s) (NLP): English, French, Spanish, Portuguese, German, and others.
  • License: MIT License
  • Finetuned from model [optional]: nreimers/mMiniLMv2-L12-H384-distilled-from-XLMR-Large

Publications

[ICASSP Paper]

@inproceedings{yuksel23_icassp,
  author       = {Kamer Ali Yuksel and Thiago Castro Ferreira and Ahmet Gunduz and Mohamed Al-Badrashiny and Golara Javadi},
  title        = {A Reference-Less Quality Metric for Automatic Speech Recognition via Contrastive-Learning of a Multi-Language Model with Self-Supervision},
  booktitle    = {IEEE International Conference on Acoustics, Speech, and Signal Processing, ICASSP 2023, Rhodes Island, Greece, June 4-10, 2023},
  pages        = {1--5},
  publisher    = {IEEE},
  year         = {2023},
  url          = {https://doi.org/10.1109/ICASSPW59220.2023.10193003},
  doi          = {10.1109/ICASSPW59220.2023.10193003}
}

[INTERSPEECH Paper]

@inproceedings{yuksel23_interspeech,
  author={Kamer Ali Yuksel and Thiago Castro Ferreira and Golara Javadi and Mohamed Al-Badrashiny and Ahmet Gunduz},
  title={NoRefER: a Referenceless Quality Metric for Automatic Speech Recognition via Semi-Supervised Language Model Fine-Tuning with Contrastive Learning},
  year=2023,
  booktitle={Proc. INTERSPEECH 2023},
  pages={466--470},
  doi={10.21437/Interspeech.2023-643}
}
Downloads last month
45
Inference API
Inference API (serverless) does not yet support model repos that contain custom code.