agkphysics commited on
Commit
cb06767
·
unverified ·
1 Parent(s): 0049167

Remove unbalanced labels CSV and update README

Browse files
Files changed (2) hide show
  1. README.md +41 -16
  2. data/unbalanced_train_segments.csv +0 -3
README.md CHANGED
@@ -24,32 +24,46 @@ configs:
24
  path: data/bal_train/*.parquet
25
  - split: test
26
  path: data/eval/*.parquet
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  ---
28
 
29
  # Dataset Card for AudioSet
30
 
31
  ## Dataset Description
 
32
  - **Homepage**: https://research.google.com/audioset/index.html
33
  - **Paper**: https://storage.googleapis.com/gweb-research2023-media/pubtools/pdf/45857.pdf
34
  - **Leaderboard**: https://paperswithcode.com/sota/audio-classification-on-audioset
35
 
36
  ### Dataset Summary
37
- [AudioSet](https://research.google.com/audioset/dataset/index.html) is a
38
- dataset of 10-second clips from YouTube, annotated into one or more
39
- sound categories, following the AudioSet ontology.
40
 
41
  ### Supported Tasks and Leaderboards
42
- - `audio-classification`: Classify audio clips into categories. The
43
- leaderboard is available
44
- [here](https://paperswithcode.com/sota/audio-classification-on-audioset)
45
 
46
  ### Languages
47
- The class labels in the dataset are in English.
48
 
 
49
 
50
  ## Dataset Structure
51
 
52
  ### Data Instances
 
53
  Example instance from the dataset:
54
  ```python
55
  {
@@ -66,6 +80,7 @@ Example instance from the dataset:
66
  ```
67
 
68
  ### Data Fields
 
69
  Instances have the following fields:
70
  - `video_id`: a `string` feature containing the original YouTube ID.
71
  - `audio`: an `Audio` feature containing the audio data and sample rate.
@@ -75,70 +90,80 @@ Instances have the following fields:
75
  human-readable forms of the same labels as in `labels`.
76
 
77
  ### Data Splits
 
78
  The distribuion of audio clips is as follows:
79
 
80
  #### `balanced` configuration
81
  | |train|test |
82
  |-----------|----:|----:|
83
- |# instances|18685|17142|
84
 
85
  #### `unbalanced` configuration
86
  | |train |test |
87
  |-----------|------:|----:|
88
- |# instances|1738788|17142|
89
 
90
 
91
  ## Dataset Creation
92
 
93
  ### Curation Rationale
 
94
  [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
95
 
96
  ### Source Data
97
 
98
  #### Initial Data Collection and Normalization
 
99
  [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
100
 
101
  #### Who are the source language producers?
 
102
  The labels are from the AudioSet ontology. Audio clips are from YouTube.
103
 
104
  ### Annotations
105
 
106
  #### Annotation process
 
107
  [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
108
 
109
  #### Who are the annotators?
 
110
  [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
111
 
112
  ### Personal and Sensitive Information
 
113
  [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
114
 
115
  ## Considerations for Using the Data
116
 
117
  ### Social Impact of Dataset
 
118
  [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
119
 
120
  ### Discussion of Biases
 
121
  [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
122
 
123
  ### Other Known Limitations
124
- 1. The YouTube videos in this copy of AudioSet were downloaded in March
125
- 2023, so not all of the original audios are available. The number of
126
- clips able to be downloaded is as follows:
127
- - Balanced train: 18685 audio clips out of 22160 originally.
128
  - Unbalanced train: 1738788 clips out of 2041789 originally.
129
- - Evaluation: 17142 audio clips out of 20371 originally.
130
- 2. Most audio is sampled at 48 kHz 24 bit, but about 10% is sampled at
131
- 44.1 kHz 24 bit. Audio files are stored in the FLAC format.
132
 
133
  ## Additional Information
134
 
135
  ### Dataset Curators
 
136
  [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
137
 
138
  ### Licensing Information
 
139
  The AudioSet data is licensed under CC-BY-4.0
140
 
141
  ## Citation
 
142
  ```bibtex
143
  @inproceedings{jort_audioset_2017,
144
  title = {Audio Set: An ontology and human-labeled dataset for audio events},
 
24
  path: data/bal_train/*.parquet
25
  - split: test
26
  path: data/eval/*.parquet
27
+ - config_name: unbalanced
28
+ data_files:
29
+ - split: train
30
+ path: data/unbal_train/*.parquet
31
+ - split: test
32
+ path: data/eval/*.parquet
33
+ - config_name: full
34
+ data_files:
35
+ - split: bal_train
36
+ path: data/bal_train/*.parquet
37
+ - split: unbal_train
38
+ path: data/unbal_train/*.parquet
39
+ - split: eval
40
+ path: data/eval/*.parquet
41
  ---
42
 
43
  # Dataset Card for AudioSet
44
 
45
  ## Dataset Description
46
+
47
  - **Homepage**: https://research.google.com/audioset/index.html
48
  - **Paper**: https://storage.googleapis.com/gweb-research2023-media/pubtools/pdf/45857.pdf
49
  - **Leaderboard**: https://paperswithcode.com/sota/audio-classification-on-audioset
50
 
51
  ### Dataset Summary
52
+
53
+ [AudioSet](https://research.google.com/audioset/dataset/index.html) is a dataset of 10-second clips from YouTube, annotated into one or more sound categories, following the AudioSet ontology.
 
54
 
55
  ### Supported Tasks and Leaderboards
56
+
57
+ - `audio-classification`: Classify audio clips into categories. The leaderboard is available [here](https://paperswithcode.com/sota/audio-classification-on-audioset)
 
58
 
59
  ### Languages
 
60
 
61
+ The class labels in the dataset are in English.
62
 
63
  ## Dataset Structure
64
 
65
  ### Data Instances
66
+
67
  Example instance from the dataset:
68
  ```python
69
  {
 
80
  ```
81
 
82
  ### Data Fields
83
+
84
  Instances have the following fields:
85
  - `video_id`: a `string` feature containing the original YouTube ID.
86
  - `audio`: an `Audio` feature containing the audio data and sample rate.
 
90
  human-readable forms of the same labels as in `labels`.
91
 
92
  ### Data Splits
93
+
94
  The distribuion of audio clips is as follows:
95
 
96
  #### `balanced` configuration
97
  | |train|test |
98
  |-----------|----:|----:|
99
+ |# instances|18683|17141|
100
 
101
  #### `unbalanced` configuration
102
  | |train |test |
103
  |-----------|------:|----:|
104
+ |# instances|1738657|17141|
105
 
106
 
107
  ## Dataset Creation
108
 
109
  ### Curation Rationale
110
+
111
  [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
112
 
113
  ### Source Data
114
 
115
  #### Initial Data Collection and Normalization
116
+
117
  [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
118
 
119
  #### Who are the source language producers?
120
+
121
  The labels are from the AudioSet ontology. Audio clips are from YouTube.
122
 
123
  ### Annotations
124
 
125
  #### Annotation process
126
+
127
  [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
128
 
129
  #### Who are the annotators?
130
+
131
  [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
132
 
133
  ### Personal and Sensitive Information
134
+
135
  [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
136
 
137
  ## Considerations for Using the Data
138
 
139
  ### Social Impact of Dataset
140
+
141
  [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
142
 
143
  ### Discussion of Biases
144
+
145
  [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
146
 
147
  ### Other Known Limitations
148
+
149
+ 1. The YouTube videos in this copy of AudioSet were downloaded in March 2023, so not all of the original audios are available. The number of clips able to be downloaded is as follows:
150
+ - Balanced train: 18683 audio clips out of 22160 originally.
 
151
  - Unbalanced train: 1738788 clips out of 2041789 originally.
152
+ - Evaluation: 17141 audio clips out of 20371 originally.
153
+ 2. Most audio is sampled at 48 kHz 24 bit, but about 10% is sampled at 44.1 kHz 24 bit. Audio files are stored in the FLAC format.
 
154
 
155
  ## Additional Information
156
 
157
  ### Dataset Curators
158
+
159
  [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
160
 
161
  ### Licensing Information
162
+
163
  The AudioSet data is licensed under CC-BY-4.0
164
 
165
  ## Citation
166
+
167
  ```bibtex
168
  @inproceedings{jort_audioset_2017,
169
  title = {Audio Set: An ontology and human-labeled dataset for audio events},
data/unbalanced_train_segments.csv DELETED
@@ -1,3 +0,0 @@
1
- version https://git-lfs.github.com/spec/v1
2
- oid sha256:bb2dfd5e4f1ced39db9480633c510f813d7899f4b7472aa83a411b4a43a12698
3
- size 101468408