Update README.md
Browse files
README.md
CHANGED
|
@@ -26,6 +26,16 @@ such as multi-label classification, covariate shift or self-supervised learning.
|
|
| 26 |
- **Complementary Code**: [Repository](https://github.com/DBD-research-group/BirdSet)
|
| 27 |
- **Complementary Paper**: [ArXiv Link](https://arxiv.org/abs/2403.10380)
|
| 28 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 29 |
|
| 30 |
## Datasets
|
| 31 |
|
|
@@ -149,6 +159,12 @@ test = dataset["test_5s"]
|
|
| 149 |
| peaks | Sequence(datasets.Value("float64")) | only traindata: peak event detected with scipy peak detection |
|
| 150 |
| quality | Value("string") | only traindata: recording quality of the recording (A,B,C) |
|
| 151 |
| recordist | Value("string") | only traindata: recordist of the recording |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 152 |
|
| 153 |
#### Example Metadata Train
|
| 154 |
|
|
@@ -187,7 +203,13 @@ test = dataset["test_5s"]
|
|
| 187 |
'event_cluster': [0, 0, 0, 0, 0, -1, 0, 0, -1, 0],
|
| 188 |
'peaks': [14.76479119037789, 41.16993396760847],
|
| 189 |
'quality': 'A',
|
| 190 |
-
'recordist': '...'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 191 |
```
|
| 192 |
|
| 193 |
#### Example Metadata Test5s
|
|
@@ -218,7 +240,13 @@ test = dataset["test_5s"]
|
|
| 218 |
'event_cluster': None,
|
| 219 |
'peaks': None,
|
| 220 |
'quality': None,
|
| 221 |
-
'recordist': None
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 222 |
```
|
| 223 |
|
| 224 |
### Citation Information
|
|
|
|
| 26 |
- **Complementary Code**: [Repository](https://github.com/DBD-research-group/BirdSet)
|
| 27 |
- **Complementary Paper**: [ArXiv Link](https://arxiv.org/abs/2403.10380)
|
| 28 |
|
| 29 |
+
## Update (2024.11.27)
|
| 30 |
+
- Additional bird taxonomy metadata, including "Genus," "Species Group," and "Order," is provided using the 2021 eBird taxonomy, consistent with the taxonomy used for the 'ebird_code' data.
|
| 31 |
+
These metadata fields follow the same format and encoding as 'ebird_code' and 'ebird_code_multilabel'. See below for an updated explanation of the metadata.
|
| 32 |
+
- If you don't require the additional taxonomy at the moment and prefer to avoid re-downloading all files, you can specify the previous revision directly in load_dataset as follows:
|
| 33 |
+
```python
|
| 34 |
+
from datasets import load_dataset
|
| 35 |
+
ds = load_dataset("DBD-research-group/BirdSet", "HSN", trust_remote_code=True, revision="629b54c06874b6d2fa886e1c0d73146c975612d0")
|
| 36 |
+
```
|
| 37 |
+
|
| 38 |
+
|
| 39 |
|
| 40 |
## Datasets
|
| 41 |
|
|
|
|
| 159 |
| peaks | Sequence(datasets.Value("float64")) | only traindata: peak event detected with scipy peak detection |
|
| 160 |
| quality | Value("string") | only traindata: recording quality of the recording (A,B,C) |
|
| 161 |
| recordist | Value("string") | only traindata: recordist of the recording |
|
| 162 |
+
| genus | ClassLabel(names=class_list) | species genus label |
|
| 163 |
+
| species_group | ClassLabel(names=class_list) | species species_group label |
|
| 164 |
+
| order | ClassLabel(names=class_list) | species order label |
|
| 165 |
+
| genus_multilabel | Sequence(datasets.ClassLabel(names=class_list)) | species genus label in a multilabel format |
|
| 166 |
+
| species_group_multilabel| Sequence(datasets.ClassLabel(names=class_list)) | species species_group label in a multilabel format |
|
| 167 |
+
| order_multilabel | Sequence(datasets.ClassLabel(names=class_list)) | species order label in a multilabel format |
|
| 168 |
|
| 169 |
#### Example Metadata Train
|
| 170 |
|
|
|
|
| 203 |
'event_cluster': [0, 0, 0, 0, 0, -1, 0, 0, -1, 0],
|
| 204 |
'peaks': [14.76479119037789, 41.16993396760847],
|
| 205 |
'quality': 'A',
|
| 206 |
+
'recordist': '...'
|
| 207 |
+
'genus': 26,
|
| 208 |
+
'species_group': 7,
|
| 209 |
+
'order': 5,
|
| 210 |
+
'genus_multilabel': None,
|
| 211 |
+
'species_group_multilabel': None,
|
| 212 |
+
'order_multilabel': None}}
|
| 213 |
```
|
| 214 |
|
| 215 |
#### Example Metadata Test5s
|
|
|
|
| 240 |
'event_cluster': None,
|
| 241 |
'peaks': None,
|
| 242 |
'quality': None,
|
| 243 |
+
'recordist': None,
|
| 244 |
+
'genus': None,
|
| 245 |
+
'species_group': None,
|
| 246 |
+
'order': None,
|
| 247 |
+
'genus_multilabel': [26],
|
| 248 |
+
'species_group_multilabel': [7],
|
| 249 |
+
'order_multilabel': [5]}}
|
| 250 |
```
|
| 251 |
|
| 252 |
### Citation Information
|