sulabhkatiyar commited on
Commit
c6fc00f
·
verified ·
1 Parent(s): 966fa62

Update dataset card for Tagin (tgj)

Browse files
Files changed (1) hide show
  1. README.md +99 -6
README.md CHANGED
@@ -1,4 +1,16 @@
1
  ---
 
 
 
 
 
 
 
 
 
 
 
 
2
  configs:
3
  - config_name: default
4
  data_files:
@@ -10,11 +22,92 @@ configs:
10
  path: data/test/*.parquet
11
  ---
12
 
13
- # sulabhkatiyar/ne-asr-tgj-aug
14
 
15
- Augmented ASR dataset for language `tgj` (Tier A).
 
16
 
17
- - Source: `sulabhkatiyar/ne-asr-tgj`
18
- - Augmentation factor: 3x (1 original + 2 speed + 0 pitch)
19
- - Training samples: 258 (from 86 originals)
20
- - Shards: 1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - tgj
4
+ license: cc-by-4.0
5
+ task_categories:
6
+ - automatic-speech-recognition
7
+ pretty_name: "NE ASR Augmented Dataset -- Tagin (tgj)"
8
+ tags:
9
+ - augmented
10
+ - ne-india
11
+ - low-resource
12
+ - speech
13
+ - asr
14
  configs:
15
  - config_name: default
16
  data_files:
 
22
  path: data/test/*.parquet
23
  ---
24
 
25
+ # NE ASR Augmented Dataset -- Tagin (tgj)
26
 
27
+ Augmented automatic speech recognition dataset for **Tagin** (`tgj`),
28
+ a Tibeto-Burman language spoken in Arunachal Pradesh, India.
29
 
30
+ ## Source
31
+
32
+ Augmented from [`sulabhkatiyar/ne-asr-tgj`](https://huggingface.co/datasets/sulabhkatiyar/ne-asr-tgj)
33
+ (original transcribed speech data from the [ARTPARK-IISc Vaani project](https://vaani.iisc.ac.in/)).
34
+
35
+ ## Language Information
36
+
37
+ | Property | Value |
38
+ |----------|-------|
39
+ | Language | Tagin |
40
+ | ISO 639-3 | `tgj` |
41
+ | Family | Tibeto-Burman |
42
+ | Region | Arunachal Pradesh, India |
43
+ | Tonal | Yes |
44
+ | Tier | A (0.12h original data) |
45
+
46
+ ## Dataset Statistics
47
+
48
+ - **Original training samples**: 86
49
+ - **Augmented training samples**: 258 (3x augmentation)
50
+ - **Train shards**: 1
51
+ - **Estimated original duration**: ~0.1 hours
52
+ - **Estimated augmented duration**: ~0.4 hours
53
+
54
+ | Split | Samples |
55
+ |-------|--------:|
56
+ | train | 258 |
57
+ | validation | 5 |
58
+ | test | 2 |
59
+
60
+ ## Transformations Applied
61
+
62
+ Each original training sample produces **3 samples** (1 original + 2 speed + 0 pitch):
63
+
64
+ - **Speed perturbation**: 0.9x, 1.1x (2 variants per sample)
65
+ - **Pitch shift**: Disabled (tonal language -- pitch shift would alter lexical meaning)
66
+ - **Noise augmentation**: Not applied
67
+
68
+ ### SpecAugment Parameters (for training, NOT in this dataset)
69
+
70
+ These parameters are consumed by the training script and are **not** baked into the audio files:
71
+
72
+ - `mask_time_prob`: 0.03
73
+ - `mask_time_length`: 10
74
+ - `mask_feature_prob`: 0.0
75
+ - `mask_feature_length`: 10
76
+ - `layerdrop`: 0.0
77
+
78
+ Full augmentation config: [`configs/augmentation_config.yaml`](https://github.com/sulabhkatiyar/ne_asr/blob/main/configs/augmentation_config.yaml)
79
+
80
+ ## Dataset Format
81
+
82
+ - **Audio**: 16kHz mono WAV (stored as Parquet with audio bytes)
83
+ - **Text**: Transcriptions
84
+ - **Features**: `audio`, `text`, `language`, `augmentation`
85
+ - **Augmentation labels**: `original`, `speed_0.9`, `speed_1.1`
86
+
87
+ ## How to Use
88
+
89
+ ```python
90
+ from datasets import load_dataset
91
+
92
+ # Load the full dataset
93
+ ds = load_dataset("sulabhkatiyar/ne-asr-tgj-aug")
94
+
95
+ # Load only the training split
96
+ train = load_dataset("sulabhkatiyar/ne-asr-tgj-aug", split="train")
97
+
98
+ # Filter to only original (non-augmented) samples
99
+ original_only = train.filter(lambda x: x["augmentation"] == "original")
100
+
101
+ # Filter to a specific augmentation type
102
+ speed_09 = train.filter(lambda x: x["augmentation"] == "speed_0.9")
103
+ ```
104
+
105
+ ## Original Data
106
+
107
+ - Source dataset: [`sulabhkatiyar/ne-asr-tgj`](https://huggingface.co/datasets/sulabhkatiyar/ne-asr-tgj)
108
+ - Project: [ARTPARK-IISc Vaani](https://vaani.iisc.ac.in/)
109
+ - License: CC-BY-4.0
110
+
111
+ ## Citation
112
+
113
+ If you use this dataset, please cite the Vaani project and acknowledge the augmentation pipeline.