anonymous-submission000 commited on
Commit
6a0113b
·
verified ·
1 Parent(s): c80df60

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +51 -2
README.md CHANGED
@@ -26,18 +26,41 @@ configs:
26
  data_files:
27
  - split: train
28
  path: data/train-*
29
- license: cc
30
  tags:
 
 
 
 
 
 
 
 
31
  - avian-perceptual-judgment
32
  - audio-perceptual-judgment
33
  size_categories:
34
  - n<1K
 
35
  ---
 
36
  # Dataset Card for VocSim - Avian Perception Alignment
37
 
38
  ## Dataset Description
39
 
40
- This dataset is a used in the **VocSim** paper, specifically designed to evaluate how well neural audio embeddings align with biological perceptual judgments of similarity. It utilizes data from Zandberg et al. (2024)~\cite{zandberg2024bird}, which includes recordings of zebra finch (*Taeniopygia guttata*) song syllables and results from behavioral experiments (probe and triplet tasks) measuring the birds' perception of syllable similarity.
 
 
 
 
 
 
 
 
 
 
 
 
 
41
 
42
  ## Dataset Structure
43
 
@@ -54,3 +77,29 @@ A typical example in the dataset looks like this:
54
  'label': 'ZF_M_123', # Label is set to speaker ID for this dataset
55
  'original_name': 'ZF_M_123_syllable_A.wav' # Identifier as used in CSVs
56
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  data_files:
27
  - split: train
28
  path: data/train-*
29
+ license: cc-by-4.0 # Explicitly CC-BY 4.0 based on PLoS Comp Bio policy
30
  tags:
31
+ - audio
32
+ - animal-vocalization
33
+ - birdsong
34
+ - zebra-finch
35
+ - perceptual-similarity
36
+ - benchmark
37
+ - zero-shot
38
+ - vocsim
39
  - avian-perceptual-judgment
40
  - audio-perceptual-judgment
41
  size_categories:
42
  - n<1K
43
+ pretty_name: "VocSim - Avian Perception Alignment"
44
  ---
45
+
46
  # Dataset Card for VocSim - Avian Perception Alignment
47
 
48
  ## Dataset Description
49
 
50
+ This dataset is used in the **VocSim benchmark** paper, specifically designed to evaluate how well neural audio embeddings align with biological perceptual judgments of similarity. It utilizes data from **Zandberg et al. (2024)**, which includes recordings of zebra finch (*Taeniopygia guttata*) song syllables and results from behavioral experiments (probe and triplet tasks) measuring the birds' perception of syllable similarity.
51
+
52
+ The dataset allows researchers to:
53
+ 1. Extract features/embeddings from the song syllables using various computational models.
54
+ 2. Compute pairwise distances between these embeddings.
55
+ 3. Compare the resulting computational similarity matrices against the avian perceptual judgments recorded in the accompanying `probes.csv` and `triplets.csv` files.
56
+
57
+ This facilitates the development and benchmarking of audio representations that better capture biologically relevant acoustic features.
58
+
59
+ **Included Files:**
60
+ * Hugging Face `Dataset` object containing audio file paths and metadata.
61
+ * `probes.csv`: Contains results from perceptual probe trials (sound_id, left, right, decision, etc.). Filtered to include only rows where all mentioned audio files exist.
62
+ * `triplets.csv`: Contains results from perceptual triplet trials (Anchor, Positive, Negative, diff, etc.). Filtered to include only rows where all mentioned audio files exist.
63
+ * `missing_audio_files.txt` (optional): Lists identifiers from the original CSVs for which no corresponding audio file was found.
64
 
65
  ## Dataset Structure
66
 
 
77
  'label': 'ZF_M_123', # Label is set to speaker ID for this dataset
78
  'original_name': 'ZF_M_123_syllable_A.wav' # Identifier as used in CSVs
79
  }
80
+ ```
81
+ ## Citation Information
82
+
83
+ If you use this dataset in your work, please cite both the VocSim benchmark paper and the original source data paper:
84
+
85
+ ```bib
86
+ @unpublished{vocsim2025,
87
+ title={VocSim: Zero-Shot Audio Similarity Benchmark for Neural Embeddings},
88
+ author={Anonymous},
89
+ year={2025},
90
+ note={Submitted manuscript}
91
+ }
92
+
93
+ @article{zandberg2024bird,
94
+ author = {Zandberg, Lies and Morfi, Veronica and George, Julia M. and Clayton, David F. and Stowell, Dan and Lachlan, Robert F.},
95
+ title = {Bird song comparison using deep learning trained from avian perceptual judgments},
96
+ journal = {PLoS Computational Biology},
97
+ volume = {20},
98
+ number = {8},
99
+ year = {2024},
100
+ month = {aug},
101
+ pages = {e1012329},
102
+ doi = {10.1371/journal.pcbi.1012329},
103
+ publisher = {Public Library of Science}
104
+ }
105
+ ```