asr-ckb / README.md
PawanOsman's picture
Update README.md
36a0574 verified
metadata
dataset_info:
  features:
    - name: audio
      dtype:
        audio:
          sampling_rate: 16000
    - name: sentence
      dtype: string
  splits:
    - name: train
      num_bytes: 8538822983.6
      num_examples: 166050
    - name: test
      num_bytes: 156515406.374
      num_examples: 5263
  download_size: 7726811875
  dataset_size: 8695338389.974
configs:
  - config_name: default
    data_files:
      - split: train
        path: data/train-*
      - split: test
        path: data/test-*
task_categories:
  - automatic-speech-recognition
size_categories:
  - 100K<n<1M
language:
  - ckb

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)