Update README.md
Browse files
README.md
CHANGED
|
@@ -26,4 +26,31 @@ configs:
|
|
| 26 |
data_files:
|
| 27 |
- split: train
|
| 28 |
path: data/train-*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 29 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
+
}
|