Datasets:
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -1,24 +1,43 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# LOD_Claude Dataset
|
| 2 |
+
|
| 3 |
+
## Dataset Description
|
| 4 |
+
|
| 5 |
+
LOD_Claude is a Luxembourgish speech dataset containing audio recordings paired with transcriptions. The audio features a synthetic voice named Claude reading example sentences from the LOD (Lëtzebuerger Online Dictionnaire) available at lod.lu.
|
| 6 |
+
|
| 7 |
+
## Dataset Statistics
|
| 8 |
+
|
| 9 |
+
- **Total samples**: 39,034
|
| 10 |
+
- **Training samples**: 37,084
|
| 11 |
+
- **Validation samples**: 1,950
|
| 12 |
+
- **Language**: Luxembourgish (Lëtzebuergesch)
|
| 13 |
+
- **Audio format**: WAV files
|
| 14 |
+
- **Sample rate**: 24,000 Hz
|
| 15 |
+
|
| 16 |
+
## Dataset Structure
|
| 17 |
+
|
| 18 |
+
Each sample contains:
|
| 19 |
+
- `audio`: Audio file in WAV format
|
| 20 |
+
- `text`: Transcription text
|
| 21 |
+
- `split`: Indicates whether sample is from "train" or "val" set
|
| 22 |
+
- `filename`: Original filename identifier
|
| 23 |
+
|
| 24 |
+
## Example
|
| 25 |
+
|
| 26 |
+
```python
|
| 27 |
+
from datasets import load_dataset
|
| 28 |
+
|
| 29 |
+
dataset = load_dataset("ZLSCompLing/LOD_Claude")
|
| 30 |
+
|
| 31 |
+
# Access a sample
|
| 32 |
+
sample = dataset[0]
|
| 33 |
+
print(f"Text: {sample['text']}")
|
| 34 |
+
# Audio can be accessed via sample['audio']
|
| 35 |
+
```
|
| 36 |
+
|
| 37 |
+
## License
|
| 38 |
+
|
| 39 |
+
This dataset is released under the CC0 license - fully public domain with free use and no attribution required.
|
| 40 |
+
|
| 41 |
+
## Contact
|
| 42 |
+
|
| 43 |
+
For questions or issues regarding this dataset, please contact the repository maintainers.
|