mahesh27 commited on
Commit
ac0f47f
·
verified ·
1 Parent(s): c44bd31

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +136 -0
README.md ADDED
@@ -0,0 +1,136 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ language:
4
+ - afr
5
+ - amh
6
+ - ara
7
+ - ast
8
+ - aze
9
+ - bel
10
+ - bul
11
+ - ben
12
+ - cat
13
+ - ceb
14
+ - ckb
15
+ - cmn
16
+ - ces
17
+ - cym
18
+ - dan
19
+ - deu
20
+ - ell
21
+ - eng
22
+ - spa
23
+ - est
24
+ - fas
25
+ - ful
26
+ - fin
27
+ - fra
28
+ - gle
29
+ - glg
30
+ - hau
31
+ - heb
32
+ - hin
33
+ - hrv
34
+ - hun
35
+ - hye
36
+ - ind
37
+ - ita
38
+ - jpn
39
+ - jav
40
+ - kat
41
+ - kaz
42
+ - khm
43
+ - kan
44
+ - kor
45
+ - kir
46
+ - lug
47
+ - lao
48
+ - lit
49
+ - lav
50
+ - mri
51
+ - mkd
52
+ - mal
53
+ - mon
54
+ - mar
55
+ - msa
56
+ - mlt
57
+ - mya
58
+ - nob
59
+ - nep
60
+ - nld
61
+ - nya
62
+ - orm
63
+ - ori
64
+ - pan
65
+ - pol
66
+ - pus
67
+ - por
68
+ - ron
69
+ - rus
70
+ - slv
71
+ - sna
72
+ - som
73
+ - swe
74
+ - swa
75
+ - tam
76
+ - tel
77
+ - tgk
78
+ - tha
79
+ - tur
80
+ - ukr
81
+ - urd
82
+ - uzb
83
+ - vie
84
+ - wol
85
+ - xho
86
+ - yor
87
+ - yue
88
+ - zul
89
+
90
+
91
+ configs:
92
+ - config_name: default
93
+ data_files:
94
+ - split: train
95
+ path: parquet_data/train/*.parquet
96
+ - split: validation
97
+ path: parquet_data/validation/*.parquet
98
+ - split: test
99
+ path: parquet_data/test/*.parquet
100
+
101
+ tags:
102
+ - audio
103
+ - speech
104
+ - textgrid
105
+ - forced-alignment
106
+ - phonetics
107
+ - multilingual
108
+ - low-resource-languages
109
+ ---
110
+
111
+ This dataset provides TextGrids with tiers `phones` in IPA and `words` in usual script corresponding to field `word_segmented` in
112
+ [`mahesh27/fleurs-ipa`](https://huggingface.co/datasets/mahesh27/fleurs-ipa).
113
+
114
+ Alignments are generated using [`mahesh27/mms-300m-ipa-fleurs`](https://huggingface.co/mahesh27/mms-300m-ipa-fleurs) along with post silence trimming as per [the paper](https://arxiv.org/abs/2608.28508).
115
+
116
+ ### Usage
117
+
118
+ Download `textgrids.zip` and extract such that the directory structure looks like `textgrids/en_us/123456789.TextGrid`. For metadata, load as usual:
119
+
120
+ ```python
121
+ from datasets import load_dataset
122
+
123
+ ds = load_dataset("mahesh27/fleurs-textgrids")
124
+ ```
125
+
126
+ ### Citation
127
+
128
+ ```
129
+ @article{akavarapu2026phoneme,
130
+ title={Phoneme- and Word-Level Metrics Using Self-Supervised Speech Representations for Forced Alignment Evaluation},
131
+ author={V.S.D.S.Mahesh Akavarapu and Michael Daniel and Gerhard Jäger},
132
+ year={2026},
133
+ journal={arXiv preprint arXiv:2608.28508},
134
+ url={https://arxiv.org/abs/2608.28508},
135
+ }
136
+ ```