Uyen99 commited on
Commit
9016caa
·
verified ·
1 Parent(s): 90c6e8c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +58 -2
README.md CHANGED
@@ -1,8 +1,14 @@
1
  ---
2
  dataset_info:
3
  features:
4
- - name: audio_name,dialect,gender,speaker
5
- dtype: string
 
 
 
 
 
 
6
  splits:
7
  - name: train
8
  num_bytes: 296025
@@ -29,4 +35,54 @@ configs:
29
  path: data/clean_test-*
30
  - split: noise_test
31
  path: data/noise_test-*
 
 
 
 
 
 
32
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  dataset_info:
3
  features:
4
+ - name: audio_name
5
+ sequence: string
6
+ - name: dialect
7
+ sequence: string
8
+ - name: gender
9
+ sequence: string
10
+ - name: speaker
11
+ sequence: string
12
  splits:
13
  - name: train
14
  num_bytes: 296025
 
35
  path: data/clean_test-*
36
  - split: noise_test
37
  path: data/noise_test-*
38
+ language:
39
+ - vi
40
+ tags:
41
+ - audio
42
+ - voice-classification
43
+ - dialect-gender-recognition
44
  ---
45
+
46
+ # Dataset Card for the ViSpeech dataset
47
+
48
+ ## Dataset Summary
49
+
50
+ The ViSpeech Dataset is a collection of unscripted audio recordings designed for the classification of gender and Vietnamese dialects. The dataset comprises 10,686 mp3 files, totaling slightly over 14 hours of speech data from 449 speakers representing both genders across the three primary Vietnamese dialects: Northern, Central, and Southern. It is divided into three subsets: a training set with clean recordings and two test sets—one with clean recordings and the other with ambient noise. Notably, the speakers in the training set are independent of those in the test sets. The dataset is designed to provide a diverse and comprehensive resource for audio classification research.
51
+
52
+ ## Dataset Details
53
+
54
+ ### Dataset Information
55
+
56
+ - **Configurations**: The dataset contains the following configurations:
57
+ - `train`: Training data with gender and dialect information.
58
+ - `validation`: Validation data with gender and dialect information.
59
+ - `clean_test`: Clean test data for evaluation.
60
+ - `noise_test`: Noisy test data for evaluation.
61
+
62
+ - **Features**:
63
+ - `audio`: Audio data with a sampling rate of 16,000 Hz.
64
+ - `audio_path`: File path to each audio file.
65
+ - `audio_name`: The name of the audio file.
66
+ - `dialect`: The dialect of the speaker.
67
+ - `gender`: The gender of the speaker.
68
+ - `speaker`: The speaker's identifier.
69
+
70
+ - **Splits**:
71
+ - **Train**: Contains the training data files.
72
+ - **Validation**: Contains the validation data files.
73
+ - **Clean Test**: Contains the clean test data files.
74
+ - **Noise Test**: Contains the noisy test data files.
75
+
76
+ ### Licensing
77
+
78
+ The dataset is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 (cc-by-nc-sa-4.0).
79
+
80
+
81
+ ## Example Usage
82
+
83
+ You can load the dataset in Python using the `datasets` library:
84
+
85
+ ```python
86
+ from datasets import load_dataset
87
+ ds = load_dataset("{dataset_name}", "train")
88
+ print(ds)