Datasets:
Maris Basha commited on
Commit ·
4597073
1
Parent(s): 83a2d0f
De-anonymize and polish README: add ICML 2026 paper info, arXiv DOI, cross-links to vocsim/* repos
Browse files
README.md
CHANGED
|
@@ -26,57 +26,82 @@ configs:
|
|
| 26 |
data_files:
|
| 27 |
- split: train
|
| 28 |
path: data/train-*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 29 |
---
|
| 30 |
-
# Dataset Card for VocSim - Mouse Strain Classification
|
| 31 |
|
| 32 |
-
#
|
| 33 |
|
| 34 |
-
|
|
|
|
|
|
|
| 35 |
|
| 36 |
-
|
| 37 |
|
| 38 |
-
|
| 39 |
|
| 40 |
-
##
|
| 41 |
|
| 42 |
-
|
|
|
|
|
|
|
| 43 |
|
| 44 |
```python
|
| 45 |
{
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
|
| 52 |
}
|
| 53 |
```
|
| 54 |
-
### Citation Information
|
| 55 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 56 |
```
|
| 57 |
-
@unpublished{vocsim2025,
|
| 58 |
-
title={VocSim: A Training-Free Benchmark for Content Identity in Single-Source Audio Embeddings},
|
| 59 |
-
author={Anonymous},
|
| 60 |
-
year={2025},
|
| 61 |
-
note={Submitted manuscript}
|
| 62 |
-
}
|
| 63 |
|
| 64 |
-
|
| 65 |
-
|
| 66 |
-
|
| 67 |
-
|
| 68 |
-
|
| 69 |
-
|
| 70 |
-
|
| 71 |
-
|
| 72 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 73 |
}
|
| 74 |
|
| 75 |
-
@
|
| 76 |
-
|
| 77 |
-
|
| 78 |
-
|
| 79 |
-
|
| 80 |
-
|
|
|
|
|
|
|
|
|
|
| 81 |
}
|
| 82 |
-
```
|
|
|
|
| 26 |
data_files:
|
| 27 |
- split: train
|
| 28 |
path: data/train-*
|
| 29 |
+
license: cc-by-4.0
|
| 30 |
+
tags:
|
| 31 |
+
- audio
|
| 32 |
+
- animal-vocalization
|
| 33 |
+
- ultrasonic-vocalization
|
| 34 |
+
- mouse
|
| 35 |
+
- bioacoustics
|
| 36 |
+
- classification
|
| 37 |
+
- benchmark
|
| 38 |
+
- vocsim
|
| 39 |
+
size_categories:
|
| 40 |
+
- 10K<n<100K
|
| 41 |
+
pretty_name: VocSim — Mouse Strain Classification
|
| 42 |
---
|
|
|
|
| 43 |
|
| 44 |
+
# VocSim — Mouse Strain Classification
|
| 45 |
|
| 46 |
+
[](https://github.com/vocsim/benchmark)
|
| 47 |
+
[](https://huggingface.co/datasets/vocsim/public)
|
| 48 |
+
[](https://creativecommons.org/licenses/by/4.0/)
|
| 49 |
|
| 50 |
+
A companion dataset for the **VocSim** benchmark that tests whether audio embeddings preserve **strain identity** in mouse ultrasonic vocalizations (USVs). It contains pre-segmented USV syllables from **C57BL/6J (C57)** and **DBA/2J (DBA)** mice, sampled at the native 250 kHz so high-frequency structure is preserved.
|
| 51 |
|
| 52 |
+
> Basha, M., Zai, A. T., Stoll, S., & Hahnloser, R. H. R. *VocSim: A Training-free Benchmark for Zero-shot Content Identity in Single-source Audio.* ICML 2026. [arXiv:2512.10120](https://doi.org/10.48550/arXiv.2512.10120)
|
| 53 |
|
| 54 |
+
## Task
|
| 55 |
|
| 56 |
+
Supervised binary classification: given an audio syllable (or features derived from it), predict the correct strain (`label` ∈ {`C57`, `DBA`}). In the paper we use this dataset to validate that VocSim-top embeddings transfer to a downstream bioacoustic task.
|
| 57 |
+
|
| 58 |
+
## Schema
|
| 59 |
|
| 60 |
```python
|
| 61 |
{
|
| 62 |
+
"audio": {"array": np.ndarray, "sampling_rate": 250000},
|
| 63 |
+
"subset": "mouse_strain",
|
| 64 |
+
"index": 101,
|
| 65 |
+
"speaker": "C57_file_001",
|
| 66 |
+
"label": "C57", # target: C57 or DBA
|
| 67 |
+
"original_name": "C57/C57_file_001.wav"
|
| 68 |
}
|
| 69 |
```
|
|
|
|
| 70 |
|
| 71 |
+
## Quick start
|
| 72 |
+
|
| 73 |
+
```python
|
| 74 |
+
from datasets import load_dataset
|
| 75 |
+
|
| 76 |
+
ds = load_dataset("vocsim/mouse-strain-classification-benchmark", split="train")
|
| 77 |
+
print(ds[0])
|
| 78 |
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 79 |
|
| 80 |
+
For end-to-end evaluation, use [github.com/vocsim/benchmark](https://github.com/vocsim/benchmark) — see `reproducibility/scripts/mouse_strain.py`.
|
| 81 |
+
|
| 82 |
+
## Source data
|
| 83 |
+
|
| 84 |
+
USV recordings and segmentation rely on MUPET (Van Segbroeck et al., 2017). Please cite both that work and the VocSim paper if you use this dataset.
|
| 85 |
+
|
| 86 |
+
## Citation
|
| 87 |
+
|
| 88 |
+
```bibtex
|
| 89 |
+
@inproceedings{basha2026vocsim,
|
| 90 |
+
title = {VocSim: A Training-free Benchmark for Zero-shot Content Identity in Single-source Audio},
|
| 91 |
+
author = {Basha, Maris and Zai, Anja T. and Stoll, Sabine and Hahnloser, Richard H. R.},
|
| 92 |
+
booktitle = {Proceedings of the 43rd International Conference on Machine Learning (ICML)},
|
| 93 |
+
year = {2026},
|
| 94 |
+
doi = {10.48550/arXiv.2512.10120}
|
| 95 |
}
|
| 96 |
|
| 97 |
+
@article{VanSegbroeck2017,
|
| 98 |
+
author = {Van Segbroeck, Maarten and Knoll, Aaron T. and Levitt, Patricia and Narayanan, Shrikanth},
|
| 99 |
+
title = {{MUPET}-Mouse Ultrasonic Profile ExTraction: A Signal Processing Tool for Rapid and Unsupervised Analysis of Ultrasonic Vocalizations},
|
| 100 |
+
journal = {Neuron},
|
| 101 |
+
volume = {94},
|
| 102 |
+
number = {3},
|
| 103 |
+
pages = {465--485.e5},
|
| 104 |
+
year = {2017},
|
| 105 |
+
doi = {10.1016/j.neuron.2017.04.018}
|
| 106 |
}
|
| 107 |
+
```
|