Datasets:

Modalities:
Audio
Text
Formats:
parquet
ArXiv:
Libraries:
Datasets
pandas
License:
Vanipedia / README.md
Sj8287's picture
Update README.md
df14ca5 verified
metadata
license: cc-by-4.0
language:
  - as
  - bn
  - gu
  - hi
  - kn
  - ml
  - mr
  - ne
  - or
  - pa
  - ta
  - te
  - sd
  - ur
  - en
pretty_name: Vanipedia
extra_gated_fields:
  Name: text
  Email: text
  Affiliation: text
  Position: text
size_categories:
  - 10K<n<100K
multilinguality:
  - multilingual
dataset_info:
  - config_name: en2indic
    features:
      - name: chunked_audio_filepath
        dtype: audio
      - name: text
        dtype: string
      - name: pred_text
        dtype: string
      - name: audio_filepath
        dtype: string
      - name: start_time
        dtype: float64
      - name: duration
        dtype: float64
      - name: alignment_score
        dtype: float64
      - name: pa_mining_score
        dtype: float64
      - name: ne_text
        dtype: string
      - name: ta_mining_score
        dtype: float64
      - name: ur_text
        dtype: string
      - name: bn_mining_score
        dtype: float64
      - name: gu_mining_score
        dtype: float64
      - name: or_mining_score
        dtype: float64
      - name: mr_mining_score
        dtype: float64
      - name: as_mining_score
        dtype: float64
      - name: ml_mining_score
        dtype: float64
      - name: kn_text
        dtype: string
      - name: sd_mining_score
        dtype: float64
      - name: ml_text
        dtype: string
      - name: or_text
        dtype: string
      - name: mr_text
        dtype: string
      - name: te_text
        dtype: string
      - name: te_mining_score
        dtype: float64
      - name: hi_mining_score
        dtype: float64
      - name: bn_text
        dtype: string
      - name: ur_mining_score
        dtype: float64
      - name: gu_text
        dtype: string
      - name: pa_text
        dtype: string
      - name: ne_mining_score
        dtype: float64
      - name: ta_text
        dtype: string
      - name: hi_text
        dtype: string
      - name: as_text
        dtype: string
      - name: sd_text
        dtype: string
      - name: kn_mining_score
        dtype: float64
    splits:
      - name: en2indic
        num_bytes: 1217020992.547
        num_examples: 67839
    download_size: 1079455320
    dataset_size: 1217020992.547
configs:
  - config_name: en2indic
    data_files:
      - split: en2indic
        path: En-Indic/train-*

BhasaAnuvaad: A Speech Translation Dataset for 13 Indian Languages

GitHub ArXiv CC BY 4.0

Dataset Description

Overview

BhasaAnuvaad, is the largest Indic-language AST dataset spanning over 44,400 hours of speech and 17M text segments for 13 of 22 scheduled Indian languages and English.

This repository consists of parallel data for Speech Translation from Vanipedia, a subset of BhasaAnuvaad.

How to use

The datasets library allows you to load and pre-process your dataset in pure Python, at scale. The dataset can be downloaded and prepared in one call to your local drive by using the load_dataset function.

  • Before downloading first follow the following steps:

    1. Gain access to the dataset and get the HF access token from: https://huggingface.co/settings/tokens.
    2. Install dependencies and login HF:
      • Install Python
      • Run pip install librosa soundfile datasets huggingface_hub[cli]
      • Login by huggingface-cli login and paste the HF access token. Check here for details.

For example, to download the (indic2en or en2indic) config, simply specify the corresponding config name (i.e., "indic2en" for Hindi):

from datasets import load_dataset
bhasaanuvaad = load_dataset("ai4bharat/Vanipedia", "en2indic", split="en2indic")

Using the datasets library, you can also stream the dataset on-the-fly by adding a streaming=True argument to the load_dataset function call. Loading a dataset in streaming mode loads individual samples of the dataset at a time, rather than downloading the entire dataset to disk.

from datasets import load_dataset
bhasaanuvaad = load_dataset("ai4bharat/Vanipedia", "en2indic", split="en2indic", streaming=True)
print(next(iter(bhasaanuvaad)))

Citation

If you use BhasaAnuvaad in your work, please cite us:

@article{jain2024bhasaanuvaad,
  title   = {BhasaAnuvaad: A Speech Translation Dataset for 14 Indian Languages},
  author  = {Sparsh Jain and Ashwin Sankar and Devilal Choudhary and Dhairya Suman and Nikhil Narasimhan and Mohammed Safi Ur Rahman Khan and Anoop Kunchukuttan and Mitesh M Khapra and Raj Dabre},
  year    = {2024},
  journal = {arXiv preprint arXiv: 2411.04699}
}

License

This dataset is released under the CC BY 4.0.

Contact

For any questions or feedback, please contact:

Please contact us for any copyright concerns.

Links