File size: 2,920 Bytes
90c6e8c
 
 
9016caa
 
 
 
 
 
 
 
90c6e8c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9016caa
 
 
 
 
 
90c6e8c
9016caa
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
38d1dc5
60001d0
38d1dc5
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
---
dataset_info:
  features:
  - name: audio_name
    sequence: string
  - name: dialect
    sequence: string
  - name: gender
    sequence: string
  - name: speaker
    sequence: string
  splits:
  - name: train
    num_bytes: 296025
    num_examples: 6941
  - name: validation
    num_bytes: 52245
    num_examples: 1225
  - name: clean_test
    num_bytes: 64000
    num_examples: 1500
  - name: noise_test
    num_bytes: 43520
    num_examples: 1020
  download_size: 87783
  dataset_size: 455790
configs:
- config_name: default
  data_files:
  - split: train
    path: data/train-*
  - split: validation
    path: data/validation-*
  - split: clean_test
    path: data/clean_test-*
  - split: noise_test
    path: data/noise_test-*
language:
- vi
tags:
- audio
- voice-classification
- dialect-gender-recognition
---

# Dataset Card for the ViSpeech dataset

## Dataset Summary

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.

## Dataset Details

### Dataset Information

- **Configurations**: The dataset contains the following configurations:
  - `train`: Training data with gender and dialect information.
  - `validation`: Validation data with gender and dialect information.
  - `clean_test`: Clean test data for evaluation.
  - `noise_test`: Noisy test data for evaluation.

- **Features**:
  - `audio`: Audio data with a sampling rate of 16,000 Hz.
  - `audio_path`: File path to each audio file.
  - `audio_name`: The name of the audio file.
  - `dialect`: The dialect of the speaker.
  - `gender`: The gender of the speaker.
  - `speaker`: The speaker's identifier.

- **Splits**:
  - **Train**: Contains the training data files.
  - **Validation**: Contains the validation data files.
  - **Clean Test**: Contains the clean test data files.
  - **Noise Test**: Contains the noisy test data files.

### Licensing

The dataset is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 (cc-by-nc-sa-4.0).


## Example Usage

You can load the dataset in Python using the `datasets` library:

```python
from datasets import load_dataset
ds = load_dataset("{dataset_name}", "train")
print(ds)
```

gives:

```
DatasetDict({
    train: Dataset({
        features: ['audio_name', 'dialect', 'gender', 'speakers'],
        num_rows: 6941
    })
})
```