amine-khelif commited on
Commit
39d4df3
·
verified ·
1 Parent(s): f31ed4a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +117 -4
README.md CHANGED
@@ -23,13 +23,126 @@ dataset_info:
23
  dtype: float32
24
  splits:
25
  - name: train
26
- num_bytes: 9917232535.58
27
- num_examples: 5989
28
- download_size: 7601443177
29
- dataset_size: 9917232535.58
30
  configs:
31
  - config_name: default
32
  data_files:
33
  - split: train
34
  path: data/train-*
 
 
 
 
 
 
 
 
35
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
23
  dtype: float32
24
  splits:
25
  - name: train
26
+ num_bytes: 13530738289.8
27
+ num_examples: 10590
28
+ download_size: 11007262901
29
+ dataset_size: 13530738289.8
30
  configs:
31
  - config_name: default
32
  data_files:
33
  - split: train
34
  path: data/train-*
35
+ license: cc-by-nc-4.0
36
+ task_categories:
37
+ - text-to-speech
38
+ - automatic-speech-recognition
39
+ - audio-to-audio
40
+ language:
41
+ - en
42
+ - fr
43
  ---
44
+
45
+
46
+ # DuBLaB-en-fr-0.8
47
+
48
+ ### Description
49
+
50
+ **DuBLaB-en-fr-0.8** is a bilingual dataset of **English-French audio segments**, aligned and extracted from audiovisual sources. This dataset is designed for **automatic speech recognition (ASR), machine translation, cross-lingual style mapping, and text-to-speech (TTS) applications**.
51
+
52
+
53
+
54
+ - **Repository:** [Hugging Face - DuBLaB-en-fr-0.8](https://huggingface.co/amine-khelif/DuBLaB-en-fr-0.8)
55
+
56
+ ---
57
+
58
+ ## Structure
59
+
60
+ Each dataset entry contains:
61
+
62
+ - **`id`**: Unique identifier for the segment.
63
+ - **`english_audio`**: Audio file (16 kHz sampling rate).
64
+ - **`english_text`**: English transcript.
65
+ - **`english_duration`**: Duration of the English segment.
66
+ - **`french_audio`**: Audio file (16 kHz sampling rate).
67
+ - **`french_text`**: French transcript.
68
+ - **`french_duration`**: Duration of the French segment.
69
+ - **`overlap_ratio`**: IOU overlap between the English and French segments.
70
+
71
+ ---
72
+
73
+
74
+ ### **Duration Statistics**
75
+
76
+ - English durations:
77
+ ```
78
+ Global Total Duration: 27652.4280 s
79
+ Mean: 4.6172 s
80
+ Minimum: 0.1800 s
81
+ Maximum: 30.0070 s
82
+ Variance: 29.4496 s^2
83
+ ```
84
+ - French durations:
85
+ ```
86
+ Global Total Duration: 28565.8570 s
87
+ Mean: 4.7697 s
88
+ Minimum: 0.2000 s
89
+ Maximum: 30.0070 s
90
+ Variance: 30.2705 s^2
91
+ ```
92
+ ---
93
+
94
+ ## Visualizations
95
+
96
+ ### **Text Density Distribution**
97
+ This plot illustrates the **distribution of words-per-second density** after filtering.
98
+
99
+ ![wordpersec08.png](https://cdn-uploads.huggingface.co/production/uploads/65abc3bd302258937183a7d3/gf1JfWHQJZgKx4srdqJis.png)
100
+
101
+ ### **Cosine Similarity (English-French)**
102
+ This KDE plot represents the **semantic similarity** between English and French transcripts, computed using `LaBSE` enmbedding model.
103
+
104
+ ![kde08.png](https://cdn-uploads.huggingface.co/production/uploads/65abc3bd302258937183a7d3/c7HxqGhDnd-qEqEf0fqe6.png)
105
+
106
+ ---
107
+
108
+ ## Usage
109
+
110
+ ### **Loading the Dataset**
111
+ Use the Hugging Face `datasets` library:
112
+
113
+ ```python
114
+ from datasets import load_dataset
115
+
116
+ dataset = load_dataset("amine-khelif/DuBLaB-en-fr-0.8")
117
+ print(dataset)
118
+ ```
119
+ License
120
+
121
+ This dataset is released under the CC BY-NC 4.0 license.
122
+ It is free to use exclusively for non-commercial purposes.
123
+
124
+ ## Citation
125
+
126
+ If you use **DuBLaB-en-fr-0.8** in your research, please cite it as follows:
127
+
128
+ ```
129
+ @misc{DuBLaB-en-fr-0.8,
130
+ author = {Khelif, Amine Khelif},
131
+ title = {DuBLaB en-fr Dataset (Version 0.8)},
132
+ howpublished = {\url{https://huggingface.co/amine-khelif/DuBLaB-en-fr-0.8}},
133
+ year = {2025},
134
+ note = {Released under the CC BY-NC 4.0 license}
135
+ }
136
+ ```
137
+
138
+
139
+
140
+
141
+ ## Contact
142
+
143
+ For any questions, suggestions, or contributions, please contact:
144
+ - Author: Amine Khelif KHELIF
145
+ - Email: [email protected]
146
+
147
+
148
+ 🚀 Start exploring DuBLaB-en-fr-0.8 today! 🚀