File size: 6,486 Bytes
6329f08 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 | ---
license: cc-by-nc-4.0
task_categories:
- automatic-speech-recognition
- text-to-speech
- text-to-audio
language:
- cy
tags:
- speech
- welsh
- cymraeg
- 3d-face
- facial-landmarks
- multimodal
- fluency
- pronunciation
- 4d-dataset
size_categories:
- 100K<n<1M
pretty_name: CymruFluency Welsh Speech Dataset
---
# Welsh Speech Dataset
A multimodal dataset of 33 speakers producing 10 Welsh phrases, captured using 3DMD technology with audio and dense facial landmark annotations.
## Dataset Overview
- **Speakers**: 33 participants
- **Phrases**: 10 Welsh phrases per speaker
- **Sequences**: ~330 (33 speakers x 10 phrases)
- **Modalities**:
- Audio recordings (.wav)
- 3D facial reconstructions (.obj meshes + texture maps)
- 68-point facial landmarks (ibug68 template)
- **Fluency Scores**: Each phrase rated 0-5 (5 = perfect, 0 = many errors)
## Preview
<div align="center">
<video style="object-fit: cover;" controls loop src="https://github.com/user-attachments/assets/140c9079-a195-4c05-aec0-7b9876048030" muted="false"></video>
<p><strong>Subject uttering Welsh phrase “Gwybodaeth angenrheidiol” (Tr. EN: Necessary information; IPA: /ˈɡʊɨ̯bɔðaɪθ aŋɛnˈhreɪ̯djɔl/)</strong></p>
</div>
## Repository Structure
This dataset is split into 4 repositories for convenience:
1. **[welsh-speech-dataset](https://huggingface.co/datasets/arvinsingh/welsh-speech-dataset)** (this repo) - Main hub with sequence-level metadata
2. **[welsh-speech-audio](https://huggingface.co/datasets/arvinsingh/welsh-speech-audio)** - Audio recordings only
3. **[welsh-speech-3d-meshes](https://huggingface.co/datasets/arvinsingh/welsh-speech-3d-meshes)** - 3D facial meshes (zipped per sequence)
4. **[welsh-speech-landmarks](https://huggingface.co/datasets/arvinsingh/welsh-speech-landmarks)** - Facial landmarks (frame-level Parquet)
## Metadata
The `metadata.csv` and `metadata.parquet` files contain **sequence-level** data (one row per speaker-phrase):
| Column | Description |
|--------|-------------|
| `speaker_id` | Speaker identifier (1-33) |
| `phrase_id` | Phrase identifier (1-10) |
| `audio_path` | Path to audio file |
| `mesh_zip_path` | Path to 3D mesh zip file |
| `fluency_score` | Pronunciation quality score (0-5) |
| `welsh_text` | Welsh phrase text |
| `english_translation` | English translation |
| `num_frames` | Number of frames in the sequence |
| `has_3d` | Boolean indicating 3D data availability |
| `has_landmark` | Boolean indicating landmark availability |
**Note:** Landmark data is stored in `landmarks.parquet` in the landmarks repository at **frame-level**.
Join using `speaker_id` and `phrase_id` to combine with this sequence-level metadata.
## Welsh Phrases
| ID | Welsh Text | English Translation |
|----|-----------|---------------------|
| 1 | Eisteddfod yr Urdd | Welsh Youth Music Competition |
| 2 | Prynhawn da bawb | Good afternoon everyone |
| 3 | Dyn busnes yw e | It's a businessman |
| 4 | Papur a phensil | Paper and pencil |
| 5 | Ardderchog | Excellent / Superb |
| 6 | Llwyddiant ysgubol | Great success |
| 7 | Yng nghanol y dref | In the town center |
| 8 | Dwy neuadd gymunedol | Two community halls |
| 9 | Llunio rhestr fer | Shortlisted |
| 10 | Gwobodaeth angenrheidiol | Necessary information |
## Usage
### Load Metadata
```python
import pandas as pd
# load sequence-level metadata
metadata = pd.read_parquet("metadata.parquet")
# filter by fluency score
high_quality = metadata[metadata['fluency_score'] >= 4]
# get info for specific speaker/phrase
seq = metadata[(metadata['speaker_id'] == 1) & (metadata['phrase_id'] == 1)].iloc[0]
print(f"Frames: {seq['num_frames']}, Fluency: {seq['fluency_score']}")
```
### Access Specific Modalities
Download only what you need:
```python
from huggingface_hub import hf_hub_download
import zipfile
# download audio
audio_file = hf_hub_download(
repo_id="arvinsingh/welsh-speech-audio",
filename="audio/speaker_01_phrase_01.wav",
repo_type="dataset"
)
# download 3D mesh zip for a sequence
mesh_zip = hf_hub_download(
repo_id="arvinsingh/welsh-speech-3d-meshes",
filename="meshes/speaker_01_phrase_01.zip",
repo_type="dataset"
)
# extract meshes
with zipfile.ZipFile(mesh_zip, 'r') as zf:
zf.extractall("speaker_01_phrase_01")
# Contains: 001.obj, 001.png, 002.obj, 002.png, ...
# load landmarks (frame-level)
import pandas as pd
landmarks = pd.read_parquet(
hf_hub_download(
repo_id="arvinsingh/welsh-speech-landmarks",
filename="landmarks.parquet",
repo_type="dataset"
)
)
# join landmarks with main metadata to get fluency scores
merged = landmarks.merge(metadata, on=['speaker_id', 'phrase_id'])
```
## Citation
If you use this dataset, please cite both the paper and the dataset:
```bibtex
@inproceedings{bali_2026_cymrufluency,
author = {Bali, Arvinder Pal Singh and
Tam, Gary KL and
Siris, Avishek and
Andrews, Gareth and
Lai, Yukun and
Tiddeman, Bernie and
Ffrancon, Gwenno},
title = {CymruFluency - A Fusion Technique and a 4D Welsh Dataset for Welsh Fluency Analysis},
booktitle = {Advanced Concepts for Intelligent Vision Systems},
pages = {96--108},
year = 2026,
publisher = {Springer Nature Switzerland},
doi = {10.1007/978-3-032-07343-3_8},
url = {https://doi.org/10.1007/978-3-032-07343-3_8},
}
@dataset{bali_2025_dataset,
author = {Bali, Arvinder Pal Singh and
Tam, Gary KL and
Siris, Avishek and
Andrews, Gareth and
Lai, Yukun and
Tiddeman, Bernie and
Ffrancon, Gwenno},
title = {Dataset and code for "CymruFluency - A fusion technique and a 4D Welsh dataset for Welsh fluency analysis"},
month = may,
year = 2025,
publisher = {Zenodo},
doi = {10.5281/zenodo.15397513},
url = {https://doi.org/10.5281/zenodo.15397513},
}
```
## Original Data
The original dataset is published on Zenodo: [10.5281/zenodo.15397513](https://doi.org/10.5281/zenodo.15397513)
## License
Creative Commons Attribution-NonCommercial 4.0 International License.
## Acknowledgments
Dataset collected using 3DMD facial capture technology. All frames manually annotated with ibug68 facial landmarks.
|