nkdem commited on
Commit
22788a9
·
verified ·
1 Parent(s): 4bedac0

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +96 -63
README.md CHANGED
@@ -1,65 +1,98 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: id
5
- dtype: string
6
- - name: audio_left
7
- dtype:
8
- audio:
9
- sampling_rate: 16000
10
- decode: false
11
- - name: audio_right
12
- dtype:
13
- audio:
14
- sampling_rate: 16000
15
- decode: false
16
- - name: environment
17
- dtype: string
18
- - name: rec_id
19
- dtype: string
20
- - name: cut_id
21
- dtype: string
22
- - name: snip_id
23
- dtype: string
24
- splits:
25
- - name: cocktail_party
26
- num_bytes: 458347400
27
- num_examples: 716
28
- - name: in_traffic
29
- num_bytes: 640146000
30
- num_examples: 1000
31
- - name: in_vehicle
32
- num_bytes: 700319724
33
- num_examples: 1094
34
- - name: music
35
- num_bytes: 1914664722
36
- num_examples: 2991
37
- - name: quiet_indoors
38
- num_bytes: 608781699
39
- num_examples: 951
40
- - name: reverberant
41
- num_bytes: 644640113
42
- num_examples: 1007
43
- - name: wind_turbulence
44
- num_bytes: 661916134
45
- num_examples: 1034
46
- download_size: 6463832667
47
- dataset_size: 5628815792
48
- configs:
49
- - config_name: default
50
- data_files:
51
- - split: cocktail_party
52
- path: data/cocktail_party-*
53
- - split: in_traffic
54
- path: data/in_traffic-*
55
- - split: in_vehicle
56
- path: data/in_vehicle-*
57
- - split: music
58
- path: data/music-*
59
- - split: quiet_indoors
60
- path: data/quiet_indoors-*
61
- - split: reverberant
62
- path: data/reverberant-*
63
- - split: wind_turbulence
64
- path: data/wind_turbulence-*
65
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: other
3
+ license_name: academic-research
4
+ license_link: https://www.hz-ol.shop/en/hear-ds.html
5
+ task_categories:
6
+ - audio-classification
7
+ - automatic-speech-recognition
8
+ language:
9
+ - en
10
+ - de
11
+ tags:
12
+ - hearing-aids
13
+ - speech-enhancement
14
+ - acoustic-scenes
15
+ - binaural-audio
16
+ - noise
17
+ size_categories:
18
+ - 1K<n<10K
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  ---
20
+
21
+ # HEAR-DS Background Audio (16kHz)
22
+
23
+ Binaural background audio recordings from the **HEAR-DS** (Hearing Aid Research Database of Sounds) dataset, downsampled to 16kHz and chunked into 10-second segments for speech enhancement and acoustic scene classification research.
24
+
25
+ ## Dataset Description
26
+
27
+ This dataset contains background noise recordings from 7 acoustic environments, captured using in-the-canal (ITC) hearing aid microphones. Each sample includes stereo (left/right ear) audio.
28
+
29
+ ### Environments
30
+
31
+ | Split | Environment | Samples |
32
+ |-------|-------------|---------|
33
+ | `cocktail_party` | Multi-speaker social settings | 716 |
34
+ | `in_traffic` | Road traffic noise | 1,000 |
35
+ | `in_vehicle` | Inside vehicles (car, bus, train) | 1,094 |
36
+ | `music` | Various music genres | 2,991 |
37
+ | `quiet_indoors` | Low-noise indoor environments | 951 |
38
+ | `reverberant` | Reverberant spaces | 1,007 |
39
+ | `wind_turbulence` | Outdoor wind noise | 1,034 |
40
+ | **Total** | | **8,793** |
41
+
42
+ ### Features
43
+
44
+ - `id`: Unique sample identifier
45
+ - `audio_left`: Left ear ITC microphone recording (16kHz, mono)
46
+ - `audio_right`: Right ear ITC microphone recording (16kHz, mono)
47
+ - `environment`: Acoustic environment category
48
+ - `rec_id`: Original recording session ID
49
+ - `cut_id`: Cut/segment ID within recording
50
+ - `snip_id`: 10-second chunk index
51
+
52
+ ## Usage
53
+
54
+ ```python
55
+ from datasets import load_dataset
56
+
57
+ # Load all environments
58
+ ds = load_dataset("nkdem/HEAR-DS-16k")
59
+
60
+ # Load specific environment
61
+ traffic = load_dataset("nkdem/HEAR-DS-16k", split="in_traffic")
62
+
63
+ # Access a sample
64
+ sample = traffic[0]
65
+ print(sample["environment"]) # "InTraffic"
66
+ print(sample["audio_left"]["array"].shape) # (160000,) - 10 seconds at 16kHz
67
+ ```
68
+
69
+ ## Processing Details
70
+
71
+ - **Original sample rate**: 48kHz
72
+ - **Target sample rate**: 16kHz (downsampled with librosa)
73
+ - **Chunk duration**: 10 seconds (160,000 samples)
74
+ - **Channels**: Mono per ear (stereo pair preserved as separate columns)
75
+ - **Microphone**: In-The-Canal (ITC) hearing aid microphones
76
+
77
+ ## Citation & Attribution
78
+
79
+ This dataset is derived from **HEAR-DS**, created by Hörzentrum Oldenburg:
80
+
81
+ > Hohmann, V., et al. "The HEAR-DS database of acoustic scenes and events for hearing aid research."
82
+ > Hörzentrum Oldenburg gGmbH.
83
+
84
+ **Original source**: [https://www.hz-ol.shop/en/hear-ds.html](https://www.hz-ol.shop/en/hear-ds.html)
85
+
86
+ If you use this dataset, please cite the original HEAR-DS database and acknowledge Hörzentrum Oldenburg.
87
+
88
+ ## Intended Use
89
+
90
+ This dataset is intended for:
91
+ - Speech enhancement model training (as noise source for augmentation)
92
+ - Acoustic scene classification research
93
+ - Hearing aid algorithm development
94
+ - Audio machine learning research
95
+
96
+ ## Licence
97
+
98
+ This is a processed version of HEAR-DS for research purposes. Please refer to the [original HEAR-DS page](https://www.hz-ol.shop/en/hear-ds.html) for licensing terms. Some components may have additional restrictions from third-party sources (CHiME, GTZan).