File size: 2,295 Bytes
75a1264
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
license: cc-by-4.0
task_categories:
  - audio-classification
tags:
  - speech
  - acoustic-echo-cancellation
  - aec-challenge
  - icassp-2022
pretty_name: Microsoft AEC Challenge 16kHz (FLAC)
---

# Microsoft AEC Challenge 16kHz

[Microsoft AEC Challenge](https://github.com/microsoft/AEC-Challenge) dataset
converted from 16kHz WAV to **FLAC** (lossless compression) and packed into tar shards.

Source: the `datasets/` directory of the microsoft/AEC-Challenge Git LFS repo.
Covers all challenge years (2021, ICASSP 2022, ICASSP 2023).

## Structure

### Real recordings

Paired loopback (far-end reference) and microphone recordings from real devices.

- `real/` — 37,578 files, single playback real recordings
- `real_doubled/` — 10,531 files, double playback real recordings

Filenames preserve the GUID-based naming convention:
`{GUID}_{scenario}_{signal}.flac`

Scenarios: `farend_singletalk`, `farend_singletalk_with_movement`, `nearend_singletalk`,
`doubletalk`, `doubletalk_with_movement`, `sweep`

Signals: `lpb` (loopback/far-end reference), `mic` (microphone recording)

### Synthetic data (10,000 clips)

- `synthetic_echo/` — Echo signal component
- `synthetic_farend/` — Far-end reference signal
- `synthetic_nearend_mic/` — Mixed microphone signal (echo + near-end + noise)
- `synthetic_nearend_speech/` — Clean near-end speech
- `meta.csv` — Synthetic data metadata

### Test sets

- `test_set/` — Original test set (clean + noisy)
- `test_set_icassp2022/` — ICASSP 2022 test set
- `blind_test_set/` — Original blind test set
- `blind_test_set_icassp2022/` — ICASSP 2022 blind test set
- `blind_test_set_icassp2023/` — ICASSP 2023 blind test set
- `blind_test_set_interspeech2021/` — Interspeech 2021 blind test set

## Usage

```python
from huggingface_hub import snapshot_download
import tarfile
from pathlib import Path

# Download
local = snapshot_download("richiejp/aec-challenge-16k", local_dir="/data/aec", repo_type="dataset")

# Extract all shards
for tar_path in sorted(Path(local).rglob("*.tar")):
    with tarfile.open(tar_path) as tf:
        tf.extractall(tar_path.parent)
```

## Source

Original data from Microsoft's AEC Challenge:
- https://github.com/microsoft/AEC-Challenge
- License: CC-BY-4.0 (see original repo for details)