Update README.md
Browse files
README.md
CHANGED
@@ -78,27 +78,28 @@ We have a complementary code base: https://github.com/DBD-research-group/BirdSet
|
|
78 |
| | format | description |
|
79 |
|------------------------|-------------------------------------------------------:|-------------------------:|
|
80 |
| audio | Audio(sampling_rate=32_000, mono=True, decode=True) | audio object from hf |
|
81 |
-
| filepath | Value("string") | path where the recording is
|
82 |
-
| start_time | Value("float64") | only testdata:start time of a vocalization
|
83 |
-
| end_time | Value("float64") | only testdata: end time of a vocalzation
|
84 |
-
| low_freq | Value("int64") |
|
85 |
-
| high_freq | Value("int64") |
|
86 |
-
| ebird_code | ClassLabel(names=class_list) |
|
87 |
-
|
|
88 |
-
|
|
89 |
-
|
|
90 |
-
|
|
91 |
-
|
|
92 |
-
|
|
93 |
-
|
|
94 |
-
|
|
95 |
-
|
|
96 |
-
|
|
97 |
-
|
|
98 |
-
|
|
99 |
-
|
|
100 |
-
|
|
101 |
-
|
|
|
|
102 |
|
103 |
#### Example Metadata Train
|
104 |
|
|
|
78 |
| | format | description |
|
79 |
|------------------------|-------------------------------------------------------:|-------------------------:|
|
80 |
| audio | Audio(sampling_rate=32_000, mono=True, decode=True) | audio object from hf |
|
81 |
+
| filepath | Value("string") | relative path where the recording is stored |
|
82 |
+
| start_time | Value("float64") | only testdata: start time of a vocalization in s |
|
83 |
+
| end_time | Value("float64") | only testdata: end time of a vocalzation in s |
|
84 |
+
| low_freq | Value("int64") | only testdata: low frequency bound for a vocalization in kHz |
|
85 |
+
| high_freq | Value("int64") | only testdata: high frequency bound for a vocalization in kHz |
|
86 |
+
| ebird_code | ClassLabel(names=class_list) | assigned species label |
|
87 |
+
| ebird_code_secondary | Sequence(datasets.Value("string")) | only traindata: possible secondary species in a recording |
|
88 |
+
| ebird_code_multilabel | Sequence(datasets.ClassLabel(names=class_list)) | assigned species label in a multilabel format |
|
89 |
+
| call_type | Sequence(datasets.Value("string")) | only traindata: type of bird vocalization |
|
90 |
+
| sex | Value("string") | only traindata: sex of bird species |
|
91 |
+
| lat | Value("float64") | latitude of vocalization/recording in WGS84 |
|
92 |
+
| long | Value("float64") | lontitude of vocalization/recording in WGS84 |
|
93 |
+
| length | Value("int64") | length of the file in s |
|
94 |
+
| microphone | Value("string") | soundscape or focal recording with the microphone string |
|
95 |
+
| license | Value("string") | license of the recording |
|
96 |
+
| source | Value("string") | source of the recording |
|
97 |
+
| local_time | Value("string") | local time of the recording |
|
98 |
+
| detected_events | Sequence(datasets.Sequence(datasets.Value("float64")))| only traindata: detected audio events in a recording with bambird, tuples of start/end time |
|
99 |
+
| event_cluster | Sequence(datasets.Value("int64")) | only traindata: detected audio events assigned to a cluster with bambird |
|
100 |
+
| peaks | Sequence(datasets.Value("float64")) | only traindata: peak event detected with scipy peak detection |
|
101 |
+
| quality | Value("string") | only traindata: recording quality of the recording (A,B,C) |
|
102 |
+
| recordist | Value("string") | only traindata: recordist of the recording |
|
103 |
|
104 |
#### Example Metadata Train
|
105 |
|