metadata
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
- split: validation
path: data/validation-*
- split: test
path: data/test-*
OpenWhistle Detection Finetuning
Expert-annotated whistle-type detection dataset for OpenWhistle. Each example is a fixed-length 0.5 s audio window labeled with the whistle types present in that window; background/no-whistle windows are represented by an all-zero target vector.
Overview
- Task: multi-label whistle-type detection on fixed-length audio windows
- Target vector:
label, with one binary decision per whistle type in the orderSW_Neo, SW_Luna, SW_Nikita, SW_Nana, SW_Yosefa, SW_Dana, NSW_1 - Background: no-whistle windows use an all-zero
labelvector - Convenience binary label:
binary_label, derived fromlabel, with valuesnoiseandwhistle - Total rows:
5600 - Class balance:
400examples per whistle type across 7 classes, plus2800background windows - Split: session-disjoint
train/validation/testwith ratios 0.70/0.15/0.15
Construction
- Built from the expert-annotated OpenWhistle benchmark subset
- Multi-label target: encode each whistle type present in the window in the fixed-length
labelvector - Binary target: derive
whistlewhen at least onelabeldimension is active, otherwisenoise - Session key: source
original_pathbasename with audio extension removed - Split rule: exact MILP assignment of whole sessions
- Balance rule: exact source-label targets per split
Features
audio: audio clips stored withdecode=Falselabel: multi-label whistle-type vector in orderSW_Neo, SW_Luna, SW_Nikita, SW_Nana, SW_Yosefa, SW_Dana, NSW_1binary_label: derived binary class label with valuesnoiseandwhistlename: original clip filename from the source datasetsource_label: original source label before deriving the binary label
Rows By Split
train:3920rowsvalidation:840rowstest:840rows
Binary Label Counts
total:noise=2800, whistle=2800train:noise=1960, whistle=1960validation:noise=420, whistle=420test:noise=420, whistle=420
Source Label Counts
train:Dana=280, Luna=280, NSW_1=280, Nana=280, Neo=280, Nikita=280, Yosefa=280, noise=1960validation:Dana=60, Luna=60, NSW_1=60, Nana=60, Neo=60, Nikita=60, Yosefa=60, noise=420test:Dana=60, Luna=60, NSW_1=60, Nana=60, Neo=60, Nikita=60, Yosefa=60, noise=420
Session Leakage
- Pairwise session overlap:
train__validation=0, train__test=0, validation__test=0
Example
from datasets import Audio, load_dataset
dataset = load_dataset("OpenWhistleNeurIPS26/OpenWhistle-Detection-Finetuning")
decoded_train = dataset["train"].cast_column("audio", Audio())
sample = decoded_train[0]