ZLSCompLing commited on
Commit
39a4e3d
·
verified ·
1 Parent(s): 74ed87a

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +43 -24
README.md CHANGED
@@ -1,24 +1,43 @@
1
- ---
2
- license: mit
3
- dataset_info:
4
- features:
5
- - name: audio
6
- dtype: audio
7
- - name: text
8
- dtype: string
9
- - name: split
10
- dtype: string
11
- - name: filename
12
- dtype: string
13
- splits:
14
- - name: train
15
- num_bytes: 9265812118
16
- num_examples: 39034
17
- download_size: 12475178307
18
- dataset_size: 9265812118
19
- configs:
20
- - config_name: default
21
- data_files:
22
- - split: train
23
- path: data/train-*
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.