You need to agree to share your contact information to access this dataset

This repository is publicly accessible, but you have to accept the conditions to access its files and content.

Three of the ESC datasets have specific terms of usage that must be agreed to before using the data.
To do so, fill in the access forms on the specific datasets' pages:

Log in or Sign Up to review the conditions and access this dataset content.

ESC benchmark diagnostic dataset

Dataset Summary

As a part of ESC benchmark, we provide a small, 8h diagnostic dataset of in-domain validation data with newly annotated transcriptions. The audio data is sampled from each of the ESC validation sets, giving a range of different domains and speaking styles. The transcriptions are annotated according to a consistent style guide with two formats: normalised and un-normalised. The dataset is structured in the same way as the ESC dataset, by grouping audio-transcription samples according to the dataset from which they were taken. We encourage participants to use this dataset when evaluating their systems to quickly assess performance on a range of different speech recognition conditions.

All eight datasets in ESC can be downloaded and prepared in just a single line of code through the Hugging Face Datasets library:

from datasets import load_dataset

esc_diagnostic_ami = load_dataset("esc-benchmark/esc-diagnostic-dataset", "ami")

Datasets have two splits - clean nd other. To have clean diagnostic subset of AMI:

ami_diagnostic_clean = esc_diagnostic_ami["clean"]

The datasets are full prepared, such that the audio and transcription files can be used directly in training/evaluation scripts.

Dataset Information

A data point can be accessed by indexing the dataset object loaded through load_dataset:

print(esc_diagnostic[0])

A typical data point comprises the path to the audio file and its transcription. Also included is information of the dataset from which the sample derives and a unique identifier name:

{
  'audio': {'path': None,
      'array': array([ 7.01904297e-04,  7.32421875e-04,  7.32421875e-04, ...,
             -2.74658203e-04, -1.83105469e-04, -3.05175781e-05]),
      'sampling_rate': 16000},
    'ortho_transcript': 'So, I guess we have to reflect on our experiences with remote controls to decide what, um, we would like to see in a convenient practical',
    'norm_transcript': 'so i guess we have to reflect on our experiences with remote controls to decide what um we would like to see in a convenient practical',
    'id': 'AMI_ES2011a_H00_FEE041_0062835_0064005',
    'dataset': 'ami',
}

Data Fields

  • audio: a dictionary containing the path to the downloaded audio file, the decoded audio array, and the sampling rate.

  • ortho_transcript: the orthographic transcription of the audio file.

  • norm_transcript: the normalized transcription of the audio file.

  • id: unique id of the data sample.

  • dataset: string name of a dataset the sample belongs to.

Data Preparation

Audio

The audio for all ESC datasets is segmented into sample lengths suitable for training ASR systems. The Hugging Face datasets library decodes audio files on the fly, reading the segments and converting them to a Python arrays. Consequently, no further preparation of the audio is required to be used in training/evaluation scripts.

Note that when accessing the audio column: dataset[0]["audio"] the audio file is automatically decoded and resampled to dataset.features["audio"].sampling_rate. Decoding and resampling of a large number of audio files might take a significant amount of time. Thus it is important to first query the sample index before the "audio" column, i.e. dataset[0]["audio"] should always be preferred over dataset["audio"][0].

Transcriptions

The transcriptions corresponding to each audio file are provided in their 'error corrected' format. No transcription pre-processing is applied to the text, only necessary 'error correction' steps such as removing junk tokens (<unk>) or converting symbolic punctuation to spelled out form (<comma> to ,). As such, no further preparation of the transcriptions is required to be used in training/evaluation scripts.

Transcriptions are provided for training and validation splits. The transcriptions are not provided for the test splits. The ESC benchmark requires you to generate predictions for the test sets and upload them to https://huggingface.co/spaces/esc-benchmark/esc for scoring.

Access

All eight of the datasets in ESC are accessible and licensing is freely available. Three of the ESC datasets have specific terms of usage that must be agreed to before using the data. To do so, fill in the access forms on the specific datasets' pages:

Diagnostic Dataset

ESC contains a small, 8h diagnostic dataset of in-domain validation data with newly annotated transcriptions. The audio data is sampled from each of the ESC validation sets, giving a range of different domains and speaking styles. The transcriptions are annotated according to a consistent style guide with two formats: normalised and un-normalised. The dataset is structured in the same way as the ESC dataset, by grouping audio-transcription samples according to the dataset from which they were taken. We encourage participants to use this dataset when evaluating their systems to quickly assess performance on a range of different speech recognition conditions. For more information, visit: esc-bench/esc-diagnostic-dataset.

LibriSpeech

The LibriSpeech corpus is a standard large-scale corpus for assessing ASR systems. It consists of approximately 1,000 hours of narrated audiobooks from the LibriVox project. It is licensed under CC-BY-4.0.

Example Usage:

librispeech = load_dataset("esc-benchmark/esc-datasets", "librispeech")

Train/validation splits:

  • train (combination of train.clean.100, train.clean.360 and train.other.500)
  • validation.clean
  • validation.other

Test splits:

  • test.clean
  • test.other

Also available are subsets of the train split, which can be accessed by setting the subconfig argument:

librispeech = load_dataset("esc-benchmark/esc-datasets", "librispeech", subconfig="clean.100")
  • clean.100: 100 hours of training data from the 'clean' subset
  • clean.360: 360 hours of training data from the 'clean' subset
  • other.500: 500 hours of training data from the 'other' subset

Common Voice

Common Voice is a series of crowd-sourced open-licensed speech datasets where speakers record text from Wikipedia in various languages. The English subset of contains approximately 1,400 hours of audio data from speakers of various nationalities, accents and different recording conditions. It is licensed under CC0-1.0.

Example usage:

common_voice = load_dataset("esc-benchmark/esc-datasets", "common_voice", use_auth_token=True)

Training/validation splits:

  • train
  • validation

Test splits:

  • test

VoxPopuli

VoxPopuli s a large-scale multilingual speech corpus consisting of political data sourced from 2009-2020 European Parliament event recordings. The English subset contains approximately 550 hours of speech largely from non-native English speakers. It is licensed under CC0.

Example usage:

voxpopuli = load_dataset("esc-benchmark/esc-datasets", "voxpopuli")

Training/validation splits:

  • train
  • validation

Test splits:

  • test

TED-LIUM

TED-LIUM consists of English-language TED Talk conference videos covering a range of different cultural, political, and academic topics. It contains approximately 450 hours of transcribed speech data. It is licensed under CC-BY-NC-ND 3.0.

Example usage:

tedlium = load_dataset("esc-benchmark/esc-datasets", "tedlium")

Training/validation splits:

  • train
  • validation

Test splits:

  • test

GigaSpeech

GigaSpeech is a multi-domain English speech recognition corpus created from audiobooks, podcasts and YouTube. We provide the large train set (2,500 hours) and the standard validation and test splits. It is licensed under apache-2.0.

Example usage:

gigaspeech = load_dataset("esc-benchmark/esc-datasets", "gigaspeech", use_auth_token=True)

Training/validation splits:

  • train (l subset of training data (2,500 h))
  • validation

Test splits:

  • test

Also available are subsets of the train split, which can be accessed by setting the subconfig argument:

gigaspeech = load_dataset("esc-benchmark/esc-datasets", "spgispeech", subconfig="xs", use_auth_token=True)
  • xs: extra-small subset of training data (10 h)
  • s: small subset of training data (250 h)
  • m: medium subset of training data (1,000 h)
  • xl: extra-large subset of training data (10,000 h)

SPGISpeech

SPGISpeech consists of company earnings calls that have been manually transcribed by S&P Global, Inc according to a professional style guide. We provide the large train set (5,000 hours) and the standard validation and test splits. It is licensed under a Kensho user agreement.

Loading the dataset requires authorization.

Example usage:

spgispeech = load_dataset("esc-benchmark/esc-datasets", "spgispeech", use_auth_token=True)

Training/validation splits:

  • train (l subset of training data (~5,000 h))
  • validation

Test splits:

  • test

Also available are subsets of the train split, which can be accessed by setting the subconfig argument:

spgispeech = load_dataset("esc-benchmark/esc-datasets", "spgispeech", subconfig="s", use_auth_token=True)
  • s: small subset of training data (~200 h)
  • m: medium subset of training data (~1,000 h)

Earnings-22

Earnings-22 is a 119-hour corpus of English-language earnings calls collected from global companies, with speakers of many different nationalities and accents. It is licensed under CC-BY-SA-4.0.

Example usage:

earnings22 = load_dataset("esc-benchmark/esc-datasets", "earnings22")

Training/validation splits:

  • train
  • validation

Test splits:

  • test

AMI

The AMI Meeting Corpus consists of 100 hours of meeting recordings from multiple recording devices synced to a common timeline. It is licensed under CC-BY-4.0.

Example usage:

ami = load_dataset("esc-benchmark/esc-datasets", "ami")

Training/validation splits:

  • train
  • validation

Test splits:

  • test
Downloads last month
0
Edit dataset card