CoolFace
Datasetpublic

sulabhkatiyar/ne-asr-dataset-nnp-aug

NE ASR Augmented Dataset -- Wancho (nnp) Augmented automatic speech recognition dataset for Wancho (nnp), a Tibeto-Burman language spoken in Arunachal Pradesh, India. Source Augmented from sulabhkatiyar/ne-asr-nnp (original transcribed speech data from the ARTPARK-IISc Vaani project). Language Information Property Value Language Wancho ISO 639-3 nnp Family Tibeto-Burman Region Arunachal Pradesh, India Tonal Yes Tier C (11.91h… See the full description on the dataset page: https://huggingface.co/datasets/sulabhkatiyar/ne-asr-dataset-nnp-aug.

sourceHugging Facecc-by-4.0updated 4mo agoView on Hugging Face
0likes600downloads
Dataset Card

NE ASR Augmented Dataset -- Wancho (nnp)

Augmented automatic speech recognition dataset for Wancho (nnp), a Tibeto-Burman language spoken in Arunachal Pradesh, India.

Source

Augmented from `sulabhkatiyar/ne-asr-nnp` (original transcribed speech data from the ARTPARK-IISc Vaani project).

Language Information

PropertyValue
LanguageWancho
ISO 639-3nnp
FamilyTibeto-Burman
RegionArunachal Pradesh, India
TonalYes
TierC (11.91h original data)

Dataset Statistics

  • —Augmentation factor: 3x (1 original + 2 speed + 0 pitch)
  • —Estimated original duration: ~11.9 hours
  • —Estimated augmented duration: ~35.7 hours

Split statistics not yet available.

Transformations Applied

Each original training sample produces 3 samples (1 original + 2 speed + 0 pitch):

  • —Speed perturbation: 0.9x, 1.1x (2 variants per sample)
  • —Pitch shift: Disabled (tonal language -- pitch shift would alter lexical meaning)
  • —Noise augmentation: Not applied

SpecAugment Parameters (for training, NOT in this dataset)

These parameters are consumed by the training script and are not baked into the audio files:

  • —mask_time_prob: 0.07
  • —mask_time_length: 10
  • —mask_feature_prob: 0.05
  • —mask_feature_length: 10
  • —layerdrop: 0.05

Full augmentation config: `configs/augmentation_config.yaml`

Dataset Format

  • —Audio: 16kHz mono WAV (stored as Parquet with audio bytes)
  • —Text: Transcriptions
  • —Features: audio, text, language, augmentation
  • —Augmentation labels: original, speed_0.9, speed_1.1

How to Use

python
from datasets import load_dataset

# Load the full dataset
ds = load_dataset("sulabhkatiyar/ne-asr-nnp-aug")

# Load only the training split
train = load_dataset("sulabhkatiyar/ne-asr-nnp-aug", split="train")

# Filter to only original (non-augmented) samples
original_only = train.filter(lambda x: x["augmentation"] == "original")

# Filter to a specific augmentation type
speed_09 = train.filter(lambda x: x["augmentation"] == "speed_0.9")

Original Data

Citation

If you use this dataset, please cite the Vaani project and acknowledge the augmentation pipeline.