anonymous-submission000 commited on
Commit
ee1f2f7
·
verified ·
1 Parent(s): 049e8aa

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +53 -0
README.md CHANGED
@@ -27,3 +27,56 @@ configs:
27
  - split: train
28
  path: data/train-*
29
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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: Zero-Shot Audio Similarity Benchmark for Neural 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
+ ```