Datasets:
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,21 +1,55 @@
|
|
| 1 |
---
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
download_size: 4352013095
|
| 15 |
-
dataset_size: 4368090112
|
| 16 |
-
configs:
|
| 17 |
-
- config_name: default
|
| 18 |
-
data_files:
|
| 19 |
-
- split: train
|
| 20 |
-
path: data/train-*
|
| 21 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
license: cc0-1.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- automatic-speech-recognition
|
| 5 |
+
language:
|
| 6 |
+
- lb
|
| 7 |
+
tags:
|
| 8 |
+
- audio
|
| 9 |
+
- speech
|
| 10 |
+
- luxembourgish
|
| 11 |
+
- synthetic
|
| 12 |
+
size_categories:
|
| 13 |
+
- 10K<n<100K
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
---
|
| 15 |
+
|
| 16 |
+
# LOD_Maxine Dataset
|
| 17 |
+
|
| 18 |
+
## Dataset Description
|
| 19 |
+
|
| 20 |
+
LOD_Maxine is a Luxembourgish speech dataset containing audio recordings paired with transcriptions. The audio features a synthetic voice named Maxine reading example sentences from the LOD (Lëtzebuerger Online Dictionnaire) available at lod.lu.
|
| 21 |
+
|
| 22 |
+
## Dataset Statistics
|
| 23 |
+
|
| 24 |
+
- **Total samples**: ~32,000
|
| 25 |
+
- **Language**: Luxembourgish (Lëtzebuergesch)
|
| 26 |
+
- **Audio format**: WAV files
|
| 27 |
+
- **Sample rate**: 22,050 Hz
|
| 28 |
+
|
| 29 |
+
## Dataset Structure
|
| 30 |
+
|
| 31 |
+
Each sample contains:
|
| 32 |
+
- `audio`: Audio file in WAV format
|
| 33 |
+
- `text`: Transcription text
|
| 34 |
+
- `filename`: Original filename identifier
|
| 35 |
+
|
| 36 |
+
## Example
|
| 37 |
+
|
| 38 |
+
```python
|
| 39 |
+
from datasets import load_dataset
|
| 40 |
+
|
| 41 |
+
dataset = load_dataset("ZLSCompLing/LOD_Maxine")
|
| 42 |
+
|
| 43 |
+
# Access a sample
|
| 44 |
+
sample = dataset[0]
|
| 45 |
+
print(f"Text: {sample['text']}")
|
| 46 |
+
# Audio can be accessed via sample['audio']
|
| 47 |
+
```
|
| 48 |
+
|
| 49 |
+
## License
|
| 50 |
+
|
| 51 |
+
This dataset is released under the CC0 license - fully public domain with free use and no attribution required.
|
| 52 |
+
|
| 53 |
+
## Contact
|
| 54 |
+
|
| 55 |
+
For questions or issues regarding this dataset, please contact the repository maintainers.
|