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.

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

ASR-CKB Dataset Card

Dataset Summary

The ASR-CKB dataset is a comprehensive collection of audio recordings and their corresponding transcriptions in Central Kurdish (Sorani). It is designed to facilitate research and development in automatic speech recognition (ASR) for the Central Kurdish language.

Dataset Structure

Features

  • audio: Audio recordings with a sampling rate of 16,000 Hz.
  • sentence: Textual transcriptions of the audio recordings.

Splits

The dataset is divided into the following splits:

  • Train: 166,050 examples, 8,538,822,983.6 bytes
  • Test: 5,263 examples, 156,515,406.374 bytes

Dataset Size

  • Download Size: 7,726,811,875 bytes
  • Dataset Size: 8,695,338,389.974 bytes

Dataset Details

Data Preprocessing

  • Audio: The audio files were standardized to a sampling rate of 16,000 Hz.
  • Text: The transcriptions were cleaned and normalized to match the spoken content accurately.

Intended Uses

This dataset is intended for training, evaluating, and benchmarking automatic speech recognition systems for the Central Kurdish language. It can be used to develop models capable of transcribing Central Kurdish audio accurately.

Limitations

  • Diversity: While the dataset includes a variety of accents and speaking styles, there may still be underrepresented dialects and variations.
  • Noise: Some audio samples may contain background noise, which could impact the performance of ASR models.

Acknowledgements

We extend our gratitude to all contributors and annotators who made this dataset possible. Their efforts in collecting and transcribing the audio samples are invaluable.

Example Usage

To load and use the ASR-CKB dataset, you can follow the example code below:

from datasets import load_dataset

# Load the dataset
dataset = load_dataset("PawanKrd/asr-ckb")

# Access the train and test splits
train_dataset = dataset["train"]
test_dataset = dataset["test"]

# Example: Play the first audio sample and print its transcription
import IPython.display as ipd

audio_sample = train_dataset[0]["audio"]
transcription = train_dataset[0]["sentence"]

# Play audio
ipd.Audio(audio_sample["array"], rate=audio_sample["sampling_rate"])

# Print transcription
print(transcription)
Downloads last month
176
Edit dataset card

Models trained or fine-tuned on PawanKrd/asr-ckb