The viewer is disabled because this dataset repo requires arbitrary Python code execution. Please consider removing the loading script and relying on automated data support (you can use convert_to_parquet from the datasets library). If this is not possible, please open a discussion for direct help.

Albayzin 2024 Bilingual Basque-Spanish Speech to Text (BBS-S2T) Challenge - Evaluation dataset

see Albayzin_2024_BBS-S2T_EvalPlan for a description of the challenge.

This is the evaluation data for the challenge.

The database consists of a single split:

  1. eval : 12498 audio segments

How to download this database

1 - If you can handle yourself comfortably with Huggingface Datasets:

from datasets import load_dataset
ds = load_dataset("gttsehu/Albayzin-2024-BBS-S2T-eval")

The Dataset contains a single split:

DatasetDict({
    eval: Dataset({
        features: ['path', 'audio', 'sentence', 'speaker_id', 'language', 'PRR', 'length'],
        num_rows: 12498
    })
})

NOTE: sentence, speaker_id, language and PRR fields are noninformative in the actual version of the dataset.

2 - Manual download:

git clone https://huggingface.co/datasets/gttsehu/Albayzin-2024-BBS-S2T-eval

NOTE: git-lfs must be installed to be able to handle the download of the large tar files (which include the audio files).

Downloaded database structure:

Albayzin-2024-BBS-S2T-eval/
β”œβ”€β”€ Albayzin-2024-BBS-S2T-eval.py
β”œβ”€β”€ audio
β”‚   └── eval_0.tar
β”œβ”€β”€ languages.py
β”œβ”€β”€ metadata
β”‚   └── eval.tsv
β”œβ”€β”€ README.md
└── release_stats.py

Untar the audio files:

ls Albayzin-2024-BBS-S2T-eval/audio/*.tar | xargs -i tar -xC Albayzin-2024-BBS-S2T-eval/audio -f {}

The metadata directory contains the index file for the evaluation split. The file contains five tab separated fields (NOTE: language, speaker_id, PRR and sentence fields are noninformative in the actual version of the dataset.):

  1. The audio file path
  2. The language of the segment (es: spanish, eu: basque and bi: bilingual)
  3. The speaker id
  4. The PhoneRecognitionRate indicating the quality of the transcription
  5. The length of the segment (in seconds)
  6. The transcription
path    language        speaker_id      PRR     length  sentence
eval/000a3dd1.mp3       -       -       0       8.89    -
eval/00158458.mp3       -       -       0       3.82    -
eval/00180e6f.mp3       -       -       0       4.03    -
eval/001cdd58.mp3       -       -       0       9.25    -
eval/00213e67.mp3       -       -       0       5.47    -
...
Downloads last month
13