humair025 commited on
Commit
e4c1bad
·
verified ·
1 Parent(s): f52396a

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +107 -0
README.md ADDED
@@ -0,0 +1,107 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - text-to-speech
5
+ - automatic-speech-recognition
6
+ language:
7
+ - ur
8
+ tags:
9
+ - urdu
10
+ - phonemes
11
+ - kanade
12
+ - speech
13
+ - ipa
14
+ - rasa
15
+ size_categories:
16
+ - 1K<n<10K
17
+ ---
18
+
19
+ # Rasa-Annotated
20
+
21
+ Enhanced version of [Rasa](https://huggingface.co/datasets/humair025/Rasa) with phoneme annotations and Kanade tokenizer features.
22
+
23
+ ## Dataset Statistics
24
+
25
+ - **Total Samples**: 26,102
26
+ - **Total Duration**: 46.92 hours
27
+ - **Average Duration**: 6.47 seconds
28
+ - **Duration Range**: 0.31s - 45.34s
29
+ - **Average Phonemes**: 18.4 per sample
30
+ - **Average Kanade Tokens**: 530.7 per sample
31
+ - **Global Embedding Dimension**: 128
32
+
33
+ ### Gender Distribution
34
+
35
+ | Gender | Count |
36
+ |--------|-------|
37
+ | Female | 12,583 |
38
+ | Male | 13,519 |
39
+
40
+ ### Style Distribution
41
+
42
+ | Style | Count |
43
+ |-------|-------|
44
+ | CONV | 5,013 |
45
+ | FEAR | 765 |
46
+ | WIKI | 6,606 |
47
+ | BOOK | 2,040 |
48
+ | NEWS | 1,897 |
49
+ | DISGUST | 868 |
50
+ | ANGER | 814 |
51
+ | UMANG | 188 |
52
+ | PROPER NOUN | 4,595 |
53
+ | SAD | 736 |
54
+ | HAPPY | 839 |
55
+ | ALEXA | 470 |
56
+ | BB | 259 |
57
+ | SURPRISE | 824 |
58
+ | DIGI | 188 |
59
+
60
+ ## New Columns
61
+
62
+ This dataset adds the following annotation columns (audio and wav_path are **NOT** included to save space):
63
+
64
+ 1. **phonemes** (string): IPA phonemes with stress markers (space-separated)
65
+ 2. **phonemes_no_stress** (string): IPA phonemes without stress markers
66
+ 3. **phonemes_list** (list): List of individual phonemes with stress
67
+ 4. **phoneme_count** (int): Number of phonemes
68
+ 5. **content_token_indices** (list): Kanade content token indices
69
+ 6. **global_embedding** (list): Kanade global embedding vector
70
+ 7. **token_len** (int): Length of content token sequence
71
+
72
+ **Note**: The `audio` and `wav_path` columns are removed to reduce dataset size. Use the original [Rasa dataset](https://huggingface.co/datasets/humair025/Rasa) if you need the audio files.
73
+
74
+ ## Generated By
75
+
76
+ - **Phonemes**: [urdu-g2p](https://github.com/zeeraktalat/urdu_g2p)
77
+ - **Kanade Features**: [kanade-12.5hz](https://huggingface.co/frothywater/kanade-12.5hz)
78
+ - **Processing**: CUDA-accelerated on GPU
79
+ - **Processing Date**: 2026-02-05
80
+
81
+ ## Usage
82
+ ```python
83
+ from datasets import load_dataset
84
+
85
+ dataset = load_dataset("humair025/Rasa-Annotated-25kHz")
86
+
87
+ # Example sample
88
+ sample = dataset['train'][0]
89
+ print(f"Text: {sample['text']}")
90
+ print(f"Duration: {sample['duration']}s")
91
+ print(f"Gender: {sample['gender']}")
92
+ print(f"Style: {sample['style']}")
93
+ print(f"Phonemes: {sample['phonemes']}")
94
+ print(f"Token length: {sample['token_len']}")
95
+ print(f"Global embedding shape: {len(sample['global_embedding'])}")
96
+
97
+ # Note: Audio is not included in this dataset
98
+ # Use the original Rasa dataset if you need audio files
99
+ ```
100
+
101
+ ## Original Dataset
102
+
103
+ Based on [Rasa](https://huggingface.co/datasets/humair025/Rasa)
104
+
105
+ ## License
106
+
107
+ MIT License