Update README.md

#1
by n-iv - opened
Files changed (1) hide show
  1. README.md +29 -2
README.md CHANGED
@@ -17,13 +17,40 @@ dataset_info:
17
  dtype: string
18
  splits:
19
  - name: train
20
- num_bytes: 24342896.0
21
  num_examples: 887
22
  download_size: 22503144
23
- dataset_size: 24342896.0
24
  configs:
25
  - config_name: default
26
  data_files:
27
  - split: train
28
  path: data/train-*
 
 
 
 
 
 
29
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
  dtype: string
18
  splits:
19
  - name: train
20
+ num_bytes: 24342896
21
  num_examples: 887
22
  download_size: 22503144
23
+ dataset_size: 24342896
24
  configs:
25
  - config_name: default
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
+
44
+ ### Data Instances
45
+
46
+ A typical example in the dataset looks like this:
47
+
48
+ ```python
49
+ {
50
+ 'audio': {'path': '/path/to/datasets/avian_perception/wavs/ZF_M_123_syllable_A.wav', 'array': array([-0.00024414, -0.00048828, ..., 0.00024414], dtype=float32), 'sampling_rate': 16000},
51
+ 'subset': 'avian_perception',
52
+ 'index': 42,
53
+ 'speaker': 'ZF_M_123',
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
+ }