Datasets:
Add dataset card
Browse files
README.md
CHANGED
|
@@ -1,4 +1,19 @@
|
|
| 1 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
dataset_info:
|
| 3 |
features:
|
| 4 |
- name: A
|
|
@@ -61,3 +76,84 @@ configs:
|
|
| 61 |
- split: test
|
| 62 |
path: data/test-*
|
| 63 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
license: cc-by-4.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- audio-classification
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
+
pretty_name: A-COAT-2k
|
| 8 |
+
size_categories:
|
| 9 |
+
- 1K<n<10K
|
| 10 |
+
tags:
|
| 11 |
+
- audio
|
| 12 |
+
- compositionality
|
| 13 |
+
- benchmark
|
| 14 |
+
- dx7
|
| 15 |
+
- icassp2026
|
| 16 |
+
- zero-shot
|
| 17 |
dataset_info:
|
| 18 |
features:
|
| 19 |
- name: A
|
|
|
|
| 76 |
- split: test
|
| 77 |
path: data/test-*
|
| 78 |
---
|
| 79 |
+
|
| 80 |
+
# A-COAT-2k
|
| 81 |
+
|
| 82 |
+
[](https://arxiv.org/abs/2603.13685)
|
| 83 |
+
[](https://github.com/chuyangchencd/audio-compositionality)
|
| 84 |
+
[](https://huggingface.co/datasets/chuyangchenn/a-tre-10k)
|
| 85 |
+
|
| 86 |
+
**A**udio **C**ompositional **O**bject **A**lgebra **T**est — 2,000 zero-shot audio
|
| 87 |
+
quadruples for evaluating whether audio encoders represent multi-source scenes
|
| 88 |
+
compositionally. **No training required.**
|
| 89 |
+
|
| 90 |
+
Companion dataset to the ICASSP 2026 paper [*Evaluating Compositional Structure in Audio
|
| 91 |
+
Representations*](https://arxiv.org/abs/2603.13685). See also the
|
| 92 |
+
trained-head benchmark [`chuyangchenn/a-tre-10k`](https://huggingface.co/datasets/chuyangchenn/a-tre-10k).
|
| 93 |
+
|
| 94 |
+
## Quick start
|
| 95 |
+
|
| 96 |
+
```python
|
| 97 |
+
from datasets import load_dataset
|
| 98 |
+
|
| 99 |
+
ds = load_dataset("chuyangchenn/a-coat-2k", split="test")
|
| 100 |
+
ex = ds[0]
|
| 101 |
+
A = ex["A"].get_all_samples().data # torch.Tensor, shape (1, 320000)
|
| 102 |
+
B = ex["B"].get_all_samples().data # B = A ∪ T
|
| 103 |
+
C = ex["C"].get_all_samples().data
|
| 104 |
+
D = ex["D"].get_all_samples().data # D = C ∪ T
|
| 105 |
+
metadata = ex["metadata"] # {"A": [...], "C": [...], "T": [...]}
|
| 106 |
+
```
|
| 107 |
+
|
| 108 |
+
## What's a quadruple?
|
| 109 |
+
|
| 110 |
+
Each row is a 4-tuple `(A, B, C, D)` where `B = A ∪ T` and `D = C ∪ T` — i.e. the
|
| 111 |
+
**same** transformation set `T` is applied to two different base scenes. The
|
| 112 |
+
benchmark score for an encoder `f` is the average over quadruples of:
|
| 113 |
+
|
| 114 |
+
`A-COAT(A,B,C,D) = cos(f(B) − f(A), f(D) − f(C))`
|
| 115 |
+
|
| 116 |
+
Score 1 = adding `T` shifts the embedding by the same vector regardless of base scene
|
| 117 |
+
(perfect compositionality). Random encoders score ≈ 0.
|
| 118 |
+
|
| 119 |
+
## Dataset structure
|
| 120 |
+
|
| 121 |
+
| Field | Type | Description |
|
| 122 |
+
|------------|-------------------------------|----------------------------------------------|
|
| 123 |
+
| `A`,`B`,`C`,`D` | `Audio(sampling_rate=32000)` | Waveforms, each `(1, 320000)` mono 32 kHz. |
|
| 124 |
+
| `metadata` | `dict[str, list[dict]]` | Source attributes per role: `A`, `C`, `T`. |
|
| 125 |
+
|
| 126 |
+
Each source has four discrete attributes (K = 8 classes per attribute):
|
| 127 |
+
|
| 128 |
+
- **timbre** — `t1`–`t8`: eight DX7 FM synth patches
|
| 129 |
+
- **pitch** — `p1`–`p8`: MIDI 36–84, linearly binned
|
| 130 |
+
- **rate** — `r1`–`r8`: 0.2–3.0 Hz, log-binned repetition rate
|
| 131 |
+
- **amplitude** — `a1`–`a8`: −26 to 0 dB, linearly binned
|
| 132 |
+
|
| 133 |
+
`A` and `C` each contain 1 source. `T` contains 1–3 sources (varies per quadruple).
|
| 134 |
+
|
| 135 |
+
## Splits
|
| 136 |
+
|
| 137 |
+
| Split | # quadruples |
|
| 138 |
+
|-------|-------------:|
|
| 139 |
+
| test | 2,000 |
|
| 140 |
+
|
| 141 |
+
(No train/val — A-COAT is a zero-shot benchmark.)
|
| 142 |
+
|
| 143 |
+
## Citation
|
| 144 |
+
|
| 145 |
+
```bibtex
|
| 146 |
+
@inproceedings{chen2026audiocomp,
|
| 147 |
+
title = {Evaluating Compositional Structure in Audio Representations},
|
| 148 |
+
author = {Chen, Chuyang and Steers, Bea and McFee, Brian and Bello, Juan Pablo},
|
| 149 |
+
booktitle = {IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP)},
|
| 150 |
+
year = {2026},
|
| 151 |
+
eprint = {2603.13685},
|
| 152 |
+
archivePrefix = {arXiv},
|
| 153 |
+
primaryClass = {cs.SD}
|
| 154 |
+
}
|
| 155 |
+
```
|
| 156 |
+
|
| 157 |
+
## License
|
| 158 |
+
|
| 159 |
+
[CC BY 4.0](https://creativecommons.org/licenses/by/4.0/) — free use with attribution.
|