gagannarula commited on
Commit
49a8e4c
·
verified ·
1 Parent(s): a5edc4d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -4
README.md CHANGED
@@ -65,7 +65,7 @@ BEANS-Zero combines data from several well-known sources. There are total of 113
65
 
66
  ### Already Part of the BEANS Benchmark
67
  - **esc-50:** A labeled collection of 2000 environmental audio recordings (5 seconds each) spanning 50 classes. ([CC-BY-NC](http://dx.doi.org/10.1145/2733373.2806390))
68
- - **Watkins:** Marine mammal sound recordings.
69
  - **CBI:** Cornell Birdcall Identification dataset. ([CC-BY-NC-SA](https://www.kaggle.com/competitions/birdsong-recognition/overview))
70
  - **HumBugDB:** A large-scale, multi-species dataset of mosquito sounds. ([CC-BY](https://openreview.net/forum?id=vhjsBtq9OxO))
71
  - **Enabirds:** Bird dawn chorus detection data. ([CC0](https://esajournals.onlinelibrary.wiley.com/doi/full/10.1002/ecy.3329))
@@ -80,7 +80,7 @@ BEANS-Zero combines data from several well-known sources. There are total of 113
80
  - **Unseen-genus-cmn / sci / tax:** Tasks for classifying genus-level names (common, scientific, taxonomic) of unseen species.
81
  - **Unseen-family-cmn / sci / tax:** Tasks for classifying family-level names (common, scientific, taxonomic) of unseen species.
82
  - **Captioning:** English captions for bioacoustic recordings.
83
- - **ZF-Indiv:** A zebra finch dataset with individual and call-type annotations.
84
 
85
  Each subset has its own metadata and licensing details. Each sample
86
 
@@ -112,10 +112,10 @@ These tasks are particularly useful for exploring zero-shot learning application
112
  ## Data Fields
113
  The following fields are present in each example:
114
  - **source_dataset** (str): One of the source datasets mentioned above
115
- - **audio** (Sequence[float]): The audio data in float32 format. The audio is not decoded, and the sample rate is 16000 Hz.
116
  - **id** (str): Sample uuid.
117
  - **created_at** (str): Sample creation datetime in utc
118
- - **metadata** (str): Each sample can have a different duration
119
  - **file_name** (str): Sample file_name
120
  - **instruction** (str): A prompt (a query) corresponding to the audio for your audio-text model with a placeholder for audio tokens. E.g. '<Audio><AudioHere></Audio> What is the scientific name for the focal species in the audio?'
121
  - **instruction_text** (str): Same as **instruction** but without the placeholder for audio tokens.
 
65
 
66
  ### Already Part of the BEANS Benchmark
67
  - **esc-50:** A labeled collection of 2000 environmental audio recordings (5 seconds each) spanning 50 classes. ([CC-BY-NC](http://dx.doi.org/10.1145/2733373.2806390))
68
+ - **Watkins:** Marine mammal sound recordings. (free for personal/academic uses)
69
  - **CBI:** Cornell Birdcall Identification dataset. ([CC-BY-NC-SA](https://www.kaggle.com/competitions/birdsong-recognition/overview))
70
  - **HumBugDB:** A large-scale, multi-species dataset of mosquito sounds. ([CC-BY](https://openreview.net/forum?id=vhjsBtq9OxO))
71
  - **Enabirds:** Bird dawn chorus detection data. ([CC0](https://esajournals.onlinelibrary.wiley.com/doi/full/10.1002/ecy.3329))
 
80
  - **Unseen-genus-cmn / sci / tax:** Tasks for classifying genus-level names (common, scientific, taxonomic) of unseen species.
81
  - **Unseen-family-cmn / sci / tax:** Tasks for classifying family-level names (common, scientific, taxonomic) of unseen species.
82
  - **Captioning:** English captions for bioacoustic recordings.
83
+ - **ZF-Indiv:** A zebra finch dataset with individual and call-type annotations, from [Elie et al 2020 (https://doi.org/10.6084/m9.figshare.11905533.v1)]
84
 
85
  Each subset has its own metadata and licensing details. Each sample
86
 
 
112
  ## Data Fields
113
  The following fields are present in each example:
114
  - **source_dataset** (str): One of the source datasets mentioned above
115
+ - **audio** (Sequence[float]): The audio data in float32 format. The audio is not decoded.
116
  - **id** (str): Sample uuid.
117
  - **created_at** (str): Sample creation datetime in utc
118
+ - **metadata** (str): Each sample can have a different duration and a different sample rate. `sample_rate = json.loads(sample["metadata"])["sample_rate"]`
119
  - **file_name** (str): Sample file_name
120
  - **instruction** (str): A prompt (a query) corresponding to the audio for your audio-text model with a placeholder for audio tokens. E.g. '<Audio><AudioHere></Audio> What is the scientific name for the focal species in the audio?'
121
  - **instruction_text** (str): Same as **instruction** but without the placeholder for audio tokens.