haydarkadioglu commited on
Commit
8909c8f
·
verified ·
1 Parent(s): f0565cc

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +57 -0
README.md CHANGED
@@ -20,4 +20,61 @@ configs:
20
  data_files:
21
  - split: train
22
  path: data/train-*
 
 
 
 
 
 
 
23
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  data_files:
21
  - split: train
22
  path: data/train-*
23
+ license: cc0-1.0
24
+ task_categories:
25
+ - audio-to-audio
26
+ language:
27
+ - en
28
+ tags:
29
+ - code
30
  ---
31
+
32
+
33
+
34
+
35
+ # Speech and Noise Dataset
36
+
37
+ ## Overview
38
+ This dataset contains three types of audio recordings:
39
+
40
+ 1. **Clean Speech** → recordings of only speech without noise.
41
+ 2. **Noisy Speech** → recordings of speech mixed with noise.
42
+ 3. **Noise Only** → recordings of only background/environmental noise.
43
+
44
+ The dataset is designed for **speech enhancement, noise reduction, and speech recognition research**.
45
+
46
+ ---
47
+
48
+ ## Dataset Structure
49
+ clean_speech/ → speech-only recordings
50
+ noisy_speech/ → speech mixed with noise
51
+ noise_only/ → noise-only recordings
52
+ metadata.csv → mapping between files and labels
53
+ ---
54
+
55
+
56
+ ## Metadata
57
+ - `filename`: Path of the audio file
58
+ - `label`: Category (`clean_speech`, `noisy_speech`, `noise_only`)
59
+
60
+ Example:
61
+
62
+ | filename | label |
63
+ |------------------|--------------|
64
+ | clean_speech/1.wav | clean_speech |
65
+ | noisy_speech/5.wav | noisy_speech |
66
+ | noise_only/3.wav | noise_only |
67
+
68
+ ---
69
+
70
+ ## Applications
71
+ - Speech enhancement models
72
+ - Noise reduction systems
73
+ - Robust ASR (Automatic Speech Recognition) training
74
+ - Machine learning tasks for audio classification
75
+
76
+ ---
77
+
78
+ ## License
79
+ CC0 1.0 – Public Domain Dedication.
80
+ You are free to use this dataset for research and commercial purposes.