File size: 1,723 Bytes
f0565cc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8909c8f
 
 
 
 
 
 
f0565cc
8909c8f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
dataset_info:
  features:
  - name: filename
    dtype: string
  - name: label
    dtype: string
  - name: audio
    dtype:
      audio:
        sampling_rate: 16000
  splits:
  - name: train
    num_bytes: 5964376050.089
    num_examples: 3381
  download_size: 5928564031
  dataset_size: 5964376050.089
configs:
- config_name: default
  data_files:
  - split: train
    path: data/train-*
license: cc0-1.0
task_categories:
- audio-to-audio
language:
- en
tags:
- code
---




# Speech and Noise Dataset

## Overview
This dataset contains three types of audio recordings:

1. **Clean Speech** → recordings of only speech without noise.  
2. **Noisy Speech** → recordings of speech mixed with noise.  
3. **Noise Only** → recordings of only background/environmental noise.  

The dataset is designed for **speech enhancement, noise reduction, and speech recognition research**.

---

## Dataset Structure
clean_speech/ → speech-only recordings
noisy_speech/ → speech mixed with noise
noise_only/ → noise-only recordings
metadata.csv → mapping between files and labels
---


## Metadata
- `filename`: Path of the audio file  
- `label`: Category (`clean_speech`, `noisy_speech`, `noise_only`)  

Example:

| filename         | label         |
|------------------|--------------|
| clean_speech/1.wav | clean_speech |
| noisy_speech/5.wav | noisy_speech |
| noise_only/3.wav   | noise_only   |

---

## Applications
- Speech enhancement models  
- Noise reduction systems  
- Robust ASR (Automatic Speech Recognition) training  
- Machine learning tasks for audio classification  

---

## License
CC0 1.0 – Public Domain Dedication.  
You are free to use this dataset for research and commercial purposes.