Update README.md
Browse files
README.md
CHANGED
@@ -42,103 +42,108 @@ Numbers need to be updated
|
|
42 |
|
43 |
| | train | test | test_5s | size (GB) | #classes |
|
44 |
|----------------------------|--------:|-----------:|--------:|-----------:|-------------:|
|
45 |
-
| HSN (high_sierras) | 5,
|
46 |
-
| NBP (nips) | 24,327 | 5,493 | 563 |
|
47 |
-
| NES (columbia_costa_rica) |
|
48 |
-
| PER (amazon_basin) |
|
49 |
-
| POW (powdermill_nature) |
|
50 |
-
| SNE (sierra_nevada) |
|
51 |
-
| SSW (sapsucker_woods) |
|
52 |
-
| UHH (hawaiian_islands) | 3,
|
53 |
-
| XCM (xenocanto) |
|
54 |
-
| XCL (xenocanto) |
|
55 |
|
56 |
#### FEATURES
|
57 |
|
58 |
```python
|
59 |
{
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
|
82 |
})
|
83 |
```
|
84 |
```python
|
85 |
EXAMPLE TRAIN
|
86 |
{'audio': {'path': '.ogg',
|
87 |
-
'array': array([
|
88 |
-
|
89 |
'sampling_rate': 32000},
|
90 |
'filepath': '.ogg',
|
91 |
'start_time': None,
|
92 |
'end_time': None,
|
93 |
'low_freq': None,
|
94 |
'high_freq': None,
|
95 |
-
'ebird_code':
|
96 |
-
'
|
97 |
-
'
|
98 |
-
'
|
99 |
-
'
|
100 |
-
'
|
|
|
|
|
101 |
'microphone': 'focal',
|
102 |
'license': '//creativecommons.org/licenses/by-nc-sa/4.0/',
|
103 |
'source': 'xenocanto',
|
104 |
-
'local_time': '
|
105 |
-
'detected_events': [[0.
|
106 |
-
[
|
107 |
-
[
|
108 |
-
[
|
109 |
-
[
|
110 |
-
[
|
111 |
-
[
|
112 |
-
[
|
113 |
-
[
|
114 |
-
[
|
115 |
-
|
116 |
-
'
|
117 |
-
'
|
118 |
|
119 |
EXAMPLE TEST_5S
|
120 |
{'audio': {'path': '.ogg',
|
121 |
-
'array': array([-
|
122 |
-
-
|
123 |
'sampling_rate': 32000},
|
124 |
'filepath': '.ogg',
|
125 |
'start_time': 0.0,
|
126 |
'end_time': 5.0,
|
127 |
-
'low_freq':
|
128 |
-
'high_freq':
|
129 |
'ebird_code': None,
|
130 |
-
'
|
|
|
131 |
'call_type': None,
|
132 |
'sex': None,
|
133 |
-
'lat':
|
134 |
-
'long': -
|
|
|
135 |
'microphone': 'Soundscape',
|
136 |
'license': 'Creative Commons Attribution 4.0 International Public License',
|
137 |
-
'source': 'https://zenodo.org/record/
|
138 |
-
'local_time': '
|
139 |
'detected_events': None,
|
140 |
'event_cluster': None,
|
141 |
-
'quality': None
|
|
|
142 |
|
143 |
### Citation Information
|
144 |
|
|
|
42 |
|
43 |
| | train | test | test_5s | size (GB) | #classes |
|
44 |
|----------------------------|--------:|-----------:|--------:|-----------:|-------------:|
|
45 |
+
| HSN (high_sierras) | 5,460 | 10,296 | 12,000 | 5.92 | 21 |
|
46 |
+
| NBP (nips) | 24,327 | 5,493 | 563 | 29.9 | 51 |
|
47 |
+
| NES (columbia_costa_rica) | 16,117 | 6,952 | 24,480 | 14.2 | 89 |
|
48 |
+
| PER (amazon_basin) | 16,802 | 14,798 | 15,120 | 10.5 | 132 |
|
49 |
+
| POW (powdermill_nature) | 14,911 | 16,052 | 4,560 | 15.7 | 48 |
|
50 |
+
| SNE (sierra_nevada) | 19,390 | 20,147 | 23,756 | 20.8 | 56 |
|
51 |
+
| SSW (sapsucker_woods) | 28,403 | 50,760 | 205,200| 35.2 | 81 |
|
52 |
+
| UHH (hawaiian_islands) | 3,626 | 59,583 | 36,637 | 4.92 | 25 tr, 27 te |
|
53 |
+
| XCM (xenocanto) | 89,798 | x | x | 89.3 | 409 |
|
54 |
+
| XCL (xenocanto) | 528,434| x | x | 484 | 9,734 |
|
55 |
|
56 |
#### FEATURES
|
57 |
|
58 |
```python
|
59 |
{
|
60 |
+
"audio": datasets.Audio(sampling_rate=32_000, mono=True, decode=True),
|
61 |
+
"filepath": datasets.Value("string"),
|
62 |
+
"start_time": datasets.Value("float64"), # can be changed to timestamp later
|
63 |
+
"end_time": datasets.Value("float64"),
|
64 |
+
"low_freq": datasets.Value("int64"),
|
65 |
+
"high_freq": datasets.Value("int64"),
|
66 |
+
"ebird_code": datasets.ClassLabel(names=class_list),
|
67 |
+
"ebird_code_multilabel": datasets.Sequence(datasets.ClassLabel(names=class_list)),
|
68 |
+
"ebird_code_secondary": datasets.Sequence(datasets.Value("string")),
|
69 |
+
"call_type": datasets.Value("string"),
|
70 |
+
"sex": datasets.Value("string"),
|
71 |
+
"lat": datasets.Value("float64"),
|
72 |
+
"long": datasets.Value("float64"),
|
73 |
+
"length": datasets.Value("int64"),
|
74 |
+
"microphone": datasets.Value("string"),
|
75 |
+
"license": datasets.Value("string"),
|
76 |
+
"source": datasets.Value("string"),
|
77 |
+
"local_time": datasets.Value("string"),
|
78 |
+
"detected_events": datasets.Sequence(datasets.Sequence(datasets.Value("float64"))),
|
79 |
+
"event_cluster": datasets.Sequence(datasets.Value("int64")),
|
80 |
+
"quality": datasets.Value("string"),
|
81 |
+
"recordist": datasets.Value("string"),
|
82 |
})
|
83 |
```
|
84 |
```python
|
85 |
EXAMPLE TRAIN
|
86 |
{'audio': {'path': '.ogg',
|
87 |
+
'array': array([ 0.0008485 , 0.00128899, -0.00317163, ..., 0.00228528,
|
88 |
+
0.00270796, -0.00120562]),
|
89 |
'sampling_rate': 32000},
|
90 |
'filepath': '.ogg',
|
91 |
'start_time': None,
|
92 |
'end_time': None,
|
93 |
'low_freq': None,
|
94 |
'high_freq': None,
|
95 |
+
'ebird_code': 0,
|
96 |
+
'ebird_code_multilabel': [0],
|
97 |
+
'ebird_code_secondary': ['plaant1', 'blfnun1', 'butwoo1', 'whtdov', 'undtin1', 'gryhaw3'],
|
98 |
+
'call_type': 'song',
|
99 |
+
'sex': 'uncertain',
|
100 |
+
'lat': -16.0538,
|
101 |
+
'long': -49.604,
|
102 |
+
'length': 46,
|
103 |
'microphone': 'focal',
|
104 |
'license': '//creativecommons.org/licenses/by-nc-sa/4.0/',
|
105 |
'source': 'xenocanto',
|
106 |
+
'local_time': '18:37',
|
107 |
+
'detected_events': [[0.736, 1.824],
|
108 |
+
[9.936, 10.944],
|
109 |
+
[13.872, 15.552],
|
110 |
+
[19.552, 20.752],
|
111 |
+
[24.816, 25.968],
|
112 |
+
[26.528, 32.16],
|
113 |
+
[36.112, 37.808],
|
114 |
+
[37.792, 38.88],
|
115 |
+
[40.048, 40.8],
|
116 |
+
[44.432, 45.616]],
|
117 |
+
'event_cluster': [0, 0, 0, 0, 0, -1, 0, 0, -1, 0],
|
118 |
+
'quality': 'A',
|
119 |
+
'recordist': '...'}
|
120 |
|
121 |
EXAMPLE TEST_5S
|
122 |
{'audio': {'path': '.ogg',
|
123 |
+
'array': array([-0.67190468, -0.9638235 , -0.99569213, ..., -0.01262935,
|
124 |
+
-0.01533066, -0.0141047 ]),
|
125 |
'sampling_rate': 32000},
|
126 |
'filepath': '.ogg',
|
127 |
'start_time': 0.0,
|
128 |
'end_time': 5.0,
|
129 |
+
'low_freq': 0,
|
130 |
+
'high_freq': 3098,
|
131 |
'ebird_code': None,
|
132 |
+
'ebird_code_multilabel': [],
|
133 |
+
'ebird_code_secondary': None,
|
134 |
'call_type': None,
|
135 |
'sex': None,
|
136 |
+
'lat': 5.59,
|
137 |
+
'long': -75.85,
|
138 |
+
'length': None,
|
139 |
'microphone': 'Soundscape',
|
140 |
'license': 'Creative Commons Attribution 4.0 International Public License',
|
141 |
+
'source': 'https://zenodo.org/record/7525349',
|
142 |
+
'local_time': '4:30:29',
|
143 |
'detected_events': None,
|
144 |
'event_cluster': None,
|
145 |
+
'quality': None,
|
146 |
+
'recordist': None}
|
147 |
|
148 |
### Citation Information
|
149 |
|