Datasets:

Size Categories:
100K<n<100M
Language Creators:
unknown
Annotations Creators:
unknown
Source Datasets:
unknown
License:
Fhrozen commited on
Commit
3a4527e
1 Parent(s): 03d3314

add initfiles

Browse files
Files changed (2) hide show
  1. README.md +135 -0
  2. audioset2022.py +20 -0
README.md CHANGED
@@ -1,3 +1,138 @@
1
  ---
2
  license: cc-by-sa-4.0
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-sa-4.0
3
+ annotations_creators:
4
+ - unknown
5
+ language_creators:
6
+ - unknown
7
+ size_categories:
8
+ - 100K<n<100M
9
+ source_datasets:
10
+ - unknown
11
+ task_categories:
12
+ - audio-classification
13
+ task_ids:
14
+ - other-audio-slot-filling
15
  ---
16
+
17
+ # Dataset Card for audioset2022
18
+ ## Table of Contents
19
+ - [Dataset Description](#dataset-description)
20
+ - [Dataset Summary](#dataset-summary)
21
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
22
+ - [Languages](#languages)
23
+ - [Dataset Structure](#dataset-structure)
24
+ - [Data Instances](#data-instances)
25
+ - [Data Fields](#data-fields)
26
+ - [Data Splits](#data-splits)
27
+ - [Dataset Creation](#dataset-creation)
28
+ - [Curation Rationale](#curation-rationale)
29
+ - [Source Data](#source-data)
30
+ - [Annotations](#annotations)
31
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
32
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
33
+ - [Social Impact of Dataset](#social-impact-of-dataset)
34
+ - [Discussion of Biases](#discussion-of-biases)
35
+ - [Other Known Limitations](#other-known-limitations)
36
+ - [Additional Information](#additional-information)
37
+ - [Dataset Curators](#dataset-curators)
38
+ - [Licensing Information](#licensing-information)
39
+ - [Citation Information](#citation-information)
40
+ - [Contributions](#contributions)
41
+
42
+ ## Dataset Description
43
+ - **Homepage:** [AudioSet Ontology](https://research.google.com/audioset/ontology/index.html)
44
+ - **Repository:** [Needs More Information]
45
+ - **Paper:** [Audio Set: An ontology and human-labeled dataset for audio events](https://research.google.com/pubs/pub45857.html)
46
+ - **Leaderboard:** [Paperswithcode Leaderboard](https://paperswithcode.com/dataset/audioset)
47
+
48
+ ### Dataset Summary
49
+
50
+ The AudioSet ontology is a collection of sound events organized in a hierarchy. The ontology covers a wide range of everyday sounds, from human and animal sounds, to natural and environmental sounds, to musical and miscellaneous sounds.
51
+
52
+ **This repository only includes audio files for DCASE 2022 - Task 3**
53
+
54
+ ### Supported Tasks and Leaderboards
55
+
56
+ - `audio-classification`: The dataset can be used to train a model for Sound Event Detection/Localization.
57
+
58
+ **The recordings only includes the single channel audio. For Localization tasks, it will required to apply RIR information**
59
+
60
+ ### Languages
61
+
62
+ None
63
+
64
+
65
+ ## Dataset Structure
66
+
67
+ ### Data Instances
68
+
69
+ **WIP**
70
+ ```
71
+ {
72
+ 'file':
73
+
74
+ }
75
+ ```
76
+
77
+ ### Data Fields
78
+
79
+ - file: A path to the downloaded audio file in .mp3 format.
80
+
81
+ ### Data Splits
82
+
83
+ This dataset only includes audio file from the unbalance train list.
84
+ The data comprises two splits: weak labels and strong labels.
85
+
86
+ ## Dataset Creation
87
+
88
+ ### Curation Rationale
89
+ [Needs More Information]
90
+
91
+ ### Source Data
92
+
93
+ #### Initial Data Collection and Normalization
94
+ [Needs More Information]
95
+
96
+ #### Who are the source language producers?
97
+ [Needs More Information]
98
+
99
+ ### Annotations
100
+
101
+ #### Annotation process
102
+ [Needs More Information]
103
+
104
+ #### Who are the annotators?
105
+ [Needs More Information]
106
+
107
+ ### Personal and Sensitive Information
108
+ [Needs More Information]
109
+ ## Considerations for Using the Data
110
+
111
+ ### Social Impact of Dataset
112
+ [More Information Needed]
113
+
114
+ ### Discussion of Biases
115
+ [More Information Needed]
116
+
117
+ ### Other Known Limitations
118
+ [Needs More Information]
119
+
120
+ ## Additional Information
121
+
122
+ ### Dataset Curators
123
+ The dataset was initially downloaded by Nelson Yalta (nelson.yalta@ieee.org).
124
+
125
+ ### Licensing Information
126
+ [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0)
127
+
128
+ ### Citation Information
129
+
130
+ ```
131
+ @inproceedings{45857,
132
+ title = {Audio Set: An ontology and human-labeled dataset for audio events},
133
+ author = {Jort F. Gemmeke and Daniel P. W. Ellis and Dylan Freedman and Aren Jansen and Wade Lawrence and R. Channing Moore and Manoj Plakal and Marvin Ritter},
134
+ year = {2017},
135
+ booktitle = {Proc. IEEE ICASSP 2017},
136
+ address = {New Orleans, LA}
137
+ }
138
+ ```
audioset2022.py ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # coding=utf-8
2
+
3
+ # Copyright 2022 Nelson Yalta (Hitachi Ltd.)
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ """Speech Commands, an audio dataset of spoken words designed to help train and evaluate keyword spotting systems. """
18
+
19
+
20
+ import datasets