Falah commited on
Commit
5f4dc66
·
1 Parent(s): 6b89b2c
Files changed (1) hide show
  1. README.md +86 -2
README.md CHANGED
@@ -24,6 +24,90 @@ dataset_info:
24
  download_size: 158117904
25
  dataset_size: 166407297.0
26
  ---
27
- # Dataset Card for "classification_arabic_dialects"
28
 
29
- [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
  download_size: 158117904
25
  dataset_size: 166407297.0
26
  ---
27
+ # Classification of Arabic Dialects Audio Dataset
28
 
29
+ This dataset contains audio samples of various Arabic dialects for the task of classification and recognition. The dataset aims to assist researchers and practitioners in developing models and systems for Arabic spoken language analysis and understanding.
30
+
31
+ ## Dataset Details
32
+
33
+ - Dataset Name: Classification of Arabic Dialects Audio Dataset
34
+ - Dataset URL: [Falah/classification_arabic_dialects](https://huggingface.co/datasets/Falah/classification_arabic_dialects)
35
+ - Dataset Size: 166,407,297 bytes
36
+ - Download Size: 158,117,904 bytes
37
+ - Splits:
38
+ - Train: 130 examples
39
+
40
+ ## Class Labels and Mapping
41
+
42
+ The dataset consists of audio samples from the following Arabic dialects, along with their corresponding class labels:
43
+
44
+ - '0': Algeria
45
+ - '1': Egypt
46
+ - '2': Iraq
47
+ - '3': Jordan
48
+ - '4': Morocco
49
+ - '5': Saudi Arabia
50
+ - '6': Sudan
51
+ - '7': Syria
52
+ - '8': Tunisia
53
+ - '9': Yemen
54
+
55
+ Please refer to the dataset for the audio samples and their respective class labels.
56
+
57
+ ## Citation
58
+
59
+ If you use this dataset in your research or any other work, please consider citing it as:
60
+
61
+ ## Usage Example
62
+
63
+ To play and display an audio sample from the dataset, you can use the following code:
64
+
65
+ ```python
66
+ from IPython.display import Audio
67
+
68
+ country_names = ['Algeria', 'Egypt', 'Iraq', 'Jordan', 'Morocco', 'Saudi_Arabia', 'Sudan', 'Syria', 'Tunisia', 'Yemen']
69
+
70
+ index = 0 # Index of the audio example
71
+ label = dataset["train"][index]["label"]
72
+
73
+ country_name = country_names[int(label)]
74
+
75
+ audio_data = dataset["train"][index]["audio"]["array"]
76
+ sampling_rate = dataset["train"][index]["audio"]["sampling_rate"]
77
+
78
+ # Play audio
79
+ display(Audio(audio_data, rate=sampling_rate))
80
+
81
+ print("Class Label:", label)
82
+ print("Country Name:", country_name)
83
+ ```
84
+
85
+ Make sure to replace `index` with the desired index of the audio example. This code will play the audio, display it, and print its associated class label and the matched country name from the `country_names` list.
86
+
87
+ ## Applications
88
+
89
+ The Classification of Arabic Dialects Audio Dataset can be utilized in various applications, including but not limited to:
90
+
91
+ - Arabic dialect classification
92
+ - Arabic spoken language recognition
93
+ - Speech analysis and understanding for Arabic dialects
94
+ - Acoustic modeling for Arabic dialects
95
+ - Cross-dialect speech processing and synthesis
96
+
97
+ Feel free to explore and leverage this dataset for your research and development tasks related to Arabic spoken language analysis and recognition.
98
+
99
+ ## License
100
+
101
+ The dataset is made available under the terms of the [Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)](https://creativecommons.org/licenses/by-sa/4.0/) license.
102
+
103
+ For more information or inquiries about the dataset, please contact the dataset author(s) mentioned in the citation.
104
+
105
+ ```
106
+ @dataset{classification_arabic_dialects,
107
+ author = {Falah.G.Salieh},
108
+ title = {Classification of Arabic Dialects Audio Dataset},
109
+ year = {2023},
110
+ publisher = {Hugging Face},
111
+ url = {https://huggingface.co/datasets/Falah/classification_arabic_dialects},
112
+ }
113
+ ```