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
Files changed (1) hide show
  1. README.md +61 -36
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
- ## Dataset Description
33
 
34
- This dataset is used in the **VocSim benchmark** paper for evaluating the ability of neural audio embeddings to distinguish between mouse strains based on their ultrasonic vocalizations (USVs). It contains recordings from C57BL/6J (C57) and DBA/2J (DBA) mouse strains.
 
 
35
 
36
- The primary task associated with this dataset is supervised classification: training a model to predict the correct strain (`label` field) given an audio input or its derived features.
37
 
38
- ## Dataset Structure
39
 
40
- ### Data Instances
41
 
42
- A typical example in the dataset looks like this:
 
 
43
 
44
  ```python
45
  {
46
- 'audio': {'path': '/path/to/datasets/mouse_strain/C57/C57_file_001.wav', 'array': array([...], dtype=float32), 'sampling_rate': 250000},
47
- 'subset': 'mouse_strain',
48
- 'index': 101,
49
- 'speaker': 'C57_file_001', # Example speaker/file ID
50
- 'label': 'C57', # The crucial strain label
51
- 'original_name': 'C57/C57_file_001.wav' # Example original relative path
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
- @article{VanSegbroeck2017,
65
- author = {Van Segbroeck, Maarten and Knoll, Aaron T. and Levitt, Patricia and Narayanan, Shrikanth},
66
- title = "{MUPET}-Mouse Ultrasonic Profile ExTraction: A Signal Processing Tool for Rapid and Unsupervised Analysis of Ultrasonic Vocalizations",
67
- journal = {Neuron},
68
- volume = {94},
69
- number = {3},
70
- pages = {465--485.e5},
71
- year = {2017},
72
- doi = {10.1016/j.neuron.2017.04.018}
 
 
 
 
 
 
73
  }
74
 
75
- @misc{mupetwiki2019,
76
- author = {{Van Segbroeck}, Maarten and Knoll, Aaron T. and Levitt, Patricia and Narayanan, Shrikanth},
77
- title = {MUPET Wiki},
78
- year = {2019},
79
- howpublished = {\url{https://github.com/mvansegbroeck/mupet/wiki/MUPET-wiki}},
80
- note = {Accessed: 2025}
 
 
 
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
+ [![GitHub](https://img.shields.io/badge/GitHub-vocsim%2Fbenchmark-black?logo=github)](https://github.com/vocsim/benchmark)
47
+ [![Core dataset](https://img.shields.io/badge/%F0%9F%A4%97%20Core-vocsim%2Fpublic-blue)](https://huggingface.co/datasets/vocsim/public)
48
+ [![License: CC BY 4.0](https://img.shields.io/badge/License-CC%20BY%204.0-blue.svg)](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
+ ```