Emreargin commited on
Commit
56a0f82
·
verified ·
1 Parent(s): 3626bf9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +25 -24
README.md CHANGED
@@ -35,8 +35,8 @@ Participants receive collections of short audio fragments (~3 seconds each) extr
35
  **The task is to estimate the number of individuals of the target species in each aviary.**
36
 
37
  For full task details, timeline, evaluation criteria, and submission instructions, see:
38
- - **Task website:** [https://www.ml4biodiversity.org/biodcase26_birdcounts/](https://www.ml4biodiversity.org/biodcase26_birdcounts/)
39
- - **Task (Challenge) page:** [https://biodcase.github.io/challenge2026/](https://biodcase.github.io/challenge2026/)
40
  - **Baseline code:** [https://github.com/ml4biodiversity/biodcase-population-estimation](https://github.com/ml4biodiversity/biodcase-population-estimation)
41
 
42
  ## Dataset description
@@ -49,9 +49,9 @@ Three bird species are designated as estimation targets. Population estimation i
49
 
50
  | Species | Scientific name | Aviaries | Population range |
51
  |---|---|---|---|
52
- | Greater flamingo | *Phoenicopterus roseus* | aviary_2, aviary_4, aviary_5, aviary_6 | 52–161 |
53
- | Red-billed quelea | *Quelea quelea* | aviary_1, aviary_3 | 61–153 |
54
- | Hadada ibis | *Bostrychia hagedash* | aviary_2, aviary_4 | 4–6 |
55
 
56
  Each aviary also contains additional non-target bird species (2–12 species per aviary, 28 species in total across all aviaries). The complete species inventory with population counts is provided in `metadata/ground_truth.csv`.
57
 
@@ -59,25 +59,25 @@ Each aviary also contains additional non-target bird species (2–12 species per
59
 
60
  | Aviary | Days | Audio files | Target species | Target population |
61
  |---|---|---|---|---|
62
- | aviary_1 | 3 | 12,627 | Red-billed quelea | 153 |
63
- | aviary_2 | 3 | 25,569 | Greater flamingo (107), Hadada ibis (6) | 113 |
64
- | aviary_3 | 3 | 11,879 | Red-billed quelea | 61 |
65
- | aviary_4 | 3 | 36,340 | Greater flamingo (161), Hadada ibis (4) | 165 |
66
- | aviary_5 | 2 | 19,363 | Greater flamingo | 52 |
67
- | aviary_6 | 3 | 35,121 | Greater flamingo | 52 |
68
  | **Total** | **17** | **140,899** | | |
69
 
70
  **Note:** Aviary 5 and aviary 6 are two separate recording sessions from the same physical location with the same bird population, captured on different dates. They are treated as independent data points with different acoustic conditions.
71
 
72
  ### Audio format
73
 
74
- All audio files are WAV files, 16-bit PCM, sampled at **48 kHz**, with a duration of approximately **3 seconds** each. The files represent consecutive, non-overlapping segments extracted from continuous recordings.
75
 
76
  ## Dataset structure
77
 
78
  ```
79
  BioDCASE2026_Bird_Counting/
80
- ├── aviary_1/
81
  │ ├── chunk_000/
82
  │ │ ├── rec_d1_00_00_45.750000.wav
83
  │ │ ├── rec_d1_00_01_49.wav
@@ -85,15 +85,15 @@ BioDCASE2026_Bird_Counting/
85
  │ ├── chunk_001/
86
  │ │ └── ...
87
  │ └── ...
88
- ├── aviary_2/
89
  │ └── ...
90
- ├── aviary_3/
91
  │ └── ...
92
- ├── aviary_4/
93
  │ └── ...
94
- ├── aviary_5/
95
  │ └── ...
96
- ├── aviary_6/
97
  │ └── ...
98
  └── metadata/
99
  ├── ground_truth.csv
@@ -110,6 +110,7 @@ rec_{day}_{HH}_{MM}_{SS}[.ffffff].wav
110
 
111
  where `{day}` is a day identifier (`d1`, `d2`, or `d3`) and `{HH}_{MM}_{SS}[.ffffff]` encodes the time of day (hours, minutes, seconds, optional fractional seconds). For example, `rec_d1_19_05_02.500000.wav` is a recording from day 1 at 19:05:02.5.
112
 
 
113
 
114
  ### Chunk subdirectories
115
 
@@ -123,7 +124,7 @@ Complete species inventory for all 6 aviaries, including both target and non-tar
123
 
124
  | Column | Description |
125
  |---|---|
126
- | `aviary_id` | Aviary identifier (`aviary_1` through `aviary_6`) |
127
  | `common_name` | English common name of the species |
128
  | `scientific_name` | Binomial scientific name |
129
  | `count` | Number of individuals present in the aviary |
@@ -151,7 +152,7 @@ A complete baseline system is available at [https://github.com/ml4biodiversity/b
151
 
152
  3. **Population estimation** — Fit species-specific regression models using leave-one-out cross-validation.
153
 
154
- The baseline achieves a combined MAE of 11.50 (MAPE 10.6%.) across all target species using ARIA detections.
155
 
156
  ## Evaluation
157
 
@@ -186,9 +187,9 @@ git clone https://huggingface.co/datasets/Emreargin/BioDCASE2026_Bird_Counting
186
 
187
  # Run the baseline
188
  cd biodcase-population-estimation
189
- pip install aria-inference # or for faster and simpler detector -> pip install aria-inference-birdnet
190
- aria-inference --input ../BioDCASE2026_Bird_Counting/aviary_1/ --output detections/aviary_1_detections.csv
191
- # ... repeat for aviary_2 through aviary_6
192
  python feature_builder.py --detections-dir detections/ --audio-root ../BioDCASE2026_Bird_Counting/ --output results/stage2_features.csv
193
  python estimator.py --features results/stage2_features.csv
194
  ```
@@ -216,6 +217,6 @@ If you use this dataset, please cite:
216
  For questions about the dataset or the challenge task, please contact:
217
  - **Emre Argın** — Maastricht University ([challenge task lead](https://biodcase.github.io/challenge2026/))
218
  - **Aki Härmä** — Maastricht University
219
- - **Aysenur Arslan-Dogan** — Maastricht University (main contact person)
220
 
221
  Or open a discussion on the [dataset page](https://huggingface.co/datasets/Emreargin/BioDCASE2026_Bird_Counting/discussions).
 
35
  **The task is to estimate the number of individuals of the target species in each aviary.**
36
 
37
  For full task details, timeline, evaluation criteria, and submission instructions, see:
38
+ - **Task page:** [https://www.ml4biodiversity.org/biodcase26_birdcounts/](https://www.ml4biodiversity.org/biodcase26_birdcounts/)
39
+ - **Challenge page:** [https://biodcase.github.io/challenge2026/](https://biodcase.github.io/challenge2026/)
40
  - **Baseline code:** [https://github.com/ml4biodiversity/biodcase-population-estimation](https://github.com/ml4biodiversity/biodcase-population-estimation)
41
 
42
  ## Dataset description
 
49
 
50
  | Species | Scientific name | Aviaries | Population range |
51
  |---|---|---|---|
52
+ | Greater flamingo | *Phoenicopterus roseus* | dev_aviary_2, dev_aviary_4, dev_aviary_5, dev_aviary_6 | 52–161 |
53
+ | Red-billed quelea | *Quelea quelea* | dev_aviary_1, dev_aviary_3 | 61–153 |
54
+ | Hadada ibis | *Bostrychia hagedash* | dev_aviary_2, dev_aviary_4 | 4–6 |
55
 
56
  Each aviary also contains additional non-target bird species (2–12 species per aviary, 28 species in total across all aviaries). The complete species inventory with population counts is provided in `metadata/ground_truth.csv`.
57
 
 
59
 
60
  | Aviary | Days | Audio files | Target species | Target population |
61
  |---|---|---|---|---|
62
+ | dev_aviary_1 | 3 | 12,627 | Red-billed quelea | 153 |
63
+ | dev_aviary_2 | 3 | 25,569 | Greater flamingo (107), Hadada ibis (6) | 113 |
64
+ | dev_aviary_3 | 3 | 11,879 | Red-billed quelea | 61 |
65
+ | dev_aviary_4 | 3 | 36,340 | Greater flamingo (161), Hadada ibis (4) | 165 |
66
+ | dev_aviary_5 | 2 | 19,363 | Greater flamingo | 52 |
67
+ | dev_aviary_6 | 3 | 35,121 | Greater flamingo | 52 |
68
  | **Total** | **17** | **140,899** | | |
69
 
70
  **Note:** Aviary 5 and aviary 6 are two separate recording sessions from the same physical location with the same bird population, captured on different dates. They are treated as independent data points with different acoustic conditions.
71
 
72
  ### Audio format
73
 
74
+ All audio files are single-channel (mono) WAV files, 16-bit PCM, sampled at **48 kHz**, with a duration of approximately **3 seconds** each. The files represent consecutive, non-overlapping segments extracted from continuous recordings.
75
 
76
  ## Dataset structure
77
 
78
  ```
79
  BioDCASE2026_Bird_Counting/
80
+ ├── dev_aviary_1/
81
  │ ├── chunk_000/
82
  │ │ ├── rec_d1_00_00_45.750000.wav
83
  │ │ ├── rec_d1_00_01_49.wav
 
85
  │ ├── chunk_001/
86
  │ │ └── ...
87
  │ └── ...
88
+ ├── dev_aviary_2/
89
  │ └── ...
90
+ ├── dev_aviary_3/
91
  │ └── ...
92
+ ├── dev_aviary_4/
93
  │ └── ...
94
+ ├── dev_aviary_5/
95
  │ └── ...
96
+ ├── dev_aviary_6/
97
  │ └── ...
98
  └── metadata/
99
  ├── ground_truth.csv
 
110
 
111
  where `{day}` is a day identifier (`d1`, `d2`, or `d3`) and `{HH}_{MM}_{SS}[.ffffff]` encodes the time of day (hours, minutes, seconds, optional fractional seconds). For example, `rec_d1_19_05_02.500000.wav` is a recording from day 1 at 19:05:02.5.
112
 
113
+ Day identifiers are anonymized — the mapping from day identifiers to calendar dates is not provided to participants.
114
 
115
  ### Chunk subdirectories
116
 
 
124
 
125
  | Column | Description |
126
  |---|---|
127
+ | `aviary_id` | Aviary identifier (`dev_aviary_1` through `dev_aviary_6`) |
128
  | `common_name` | English common name of the species |
129
  | `scientific_name` | Binomial scientific name |
130
  | `count` | Number of individuals present in the aviary |
 
152
 
153
  3. **Population estimation** — Fit species-specific regression models using leave-one-out cross-validation.
154
 
155
+ The baseline achieves a combined MAE of 11.77 (MAPE 11.4%) across all target species using ARIA detections.
156
 
157
  ## Evaluation
158
 
 
187
 
188
  # Run the baseline
189
  cd biodcase-population-estimation
190
+ pip install aria-inference
191
+ aria-inference --input ../BioDCASE2026_Bird_Counting/dev_aviary_1/ --output detections/dev_aviary_1_detections.csv
192
+ # ... repeat for dev_aviary_2 through dev_aviary_6
193
  python feature_builder.py --detections-dir detections/ --audio-root ../BioDCASE2026_Bird_Counting/ --output results/stage2_features.csv
194
  python estimator.py --features results/stage2_features.csv
195
  ```
 
217
  For questions about the dataset or the challenge task, please contact:
218
  - **Emre Argın** — Maastricht University ([challenge task lead](https://biodcase.github.io/challenge2026/))
219
  - **Aki Härmä** — Maastricht University
220
+ - **Aysenur Arslan-Dogan** — Maastricht University
221
 
222
  Or open a discussion on the [dataset page](https://huggingface.co/datasets/Emreargin/BioDCASE2026_Bird_Counting/discussions).