projectlosangeles commited on
Commit
250d145
·
verified ·
1 Parent(s): 7f9dbc8

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +132 -2
README.md CHANGED
@@ -125,7 +125,137 @@ godzillamididataset.search_and_filter(sigs_dicts, X, global_union)
125
 
126
  ***
127
 
128
- ## Citation card
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
129
 
130
  ```bibtex
131
  @misc{GodzillaMIDIDataset2025,
@@ -139,4 +269,4 @@ godzillamididataset.search_and_filter(sigs_dicts, X, global_union)
139
  ***
140
 
141
  ### Project Los Angeles
142
- ### Tegridy Code 2025
 
125
 
126
  ***
127
 
128
+ ## Dataset structure information
129
+
130
+ ```
131
+ Godzilla-MIDI-Dataset/ # Dataset root dir
132
+ ├── ARTWORK/ # Concept artwork
133
+ │ ├── Illustrations/ # Concept illustrations
134
+ │ ├── Logos/ # Dataset logos
135
+ │ └── Posters/ # Dataset posters
136
+ ├── CODE/ # Supplemental python code and python modules
137
+ ├── DATA/ # Dataset (meta)data dir
138
+ │ ├── Averages/ # Averages data for all MIDIs and clean MIDIs
139
+ │ ├── Basic Features/ # All basic features for all clean MIDIs
140
+ │ ├── Files Lists/ # Files lists by MIDIs types and categories
141
+ │ ├── Identified MIDIs/ # Comprehensive data for identified MIDIs
142
+ │ ├── Metadata/ # Raw metadata from all MIDIs
143
+ │ ├── Mono Melodies/ # Data for all MIDIs with monophonic melodies
144
+ │ ├── Pitches Patches Counts/ # Pitches-patches counts for all MIDIs
145
+ │ ├── Pitches Sums/ # Pitches sums for all MIDIs
146
+ │ ├── Signatures/ # Signatures data for all MIDIs and MIDIs subsets
147
+ │ └── Text Captions/ # Music description text captions for all MIDIs
148
+ ├── MIDIs/ # Root MIDIs dir
149
+ └── SOUNDFONTS/ # Select high-quality soundfont banks to render MIDIs
150
+ ```
151
+
152
+ ***
153
+
154
+ ## Dataset (meta)data information
155
+
156
+ ****
157
+
158
+ ### Averages
159
+
160
+ #### Averages for all MIDIs are presented in three groups:
161
+
162
+ * ##### Notes averages without drums
163
+ * ##### Notes and drums averages
164
+ * ##### Drums averages without notes
165
+
166
+ #### Each group of averages is represented by a list of four values:
167
+
168
+ * ##### Delta start-times average in ms
169
+ * ##### Durations average in ms
170
+ * ##### Pitches average
171
+ * ##### Velocities average
172
+
173
+ ****
174
+
175
+ ### Basic features
176
+
177
+ #### Basic features are presented in a form of a dictionary of 111 metrics
178
+ #### The features were collected from a solo piano score representation of all MIDIs with MIDI instruments below 80
179
+ #### These features are useful for music classification, analysis and other MIR tasks
180
+
181
+ ****
182
+
183
+ ### Files lists
184
+
185
+ #### Numerous files lists were created for convenience and easy MIDIs retrieval from the dataset
186
+ #### These include lists of all MIDIs as well as subsets of MIDIs
187
+ #### Files lists are presented in a dictionary format of two strings:
188
+
189
+ * ##### MIDI md5 hash
190
+ * ##### Full MIDI path
191
+
192
+ ****
193
+
194
+ ### Identified MIDIs
195
+
196
+ #### This data contains information about all MIDIs that were definitivelly identified by artist, title, and genre
197
+
198
+ ****
199
+
200
+ ### Metadata
201
+
202
+ #### Metadata was collected from all MIDIs in the dataset and its a list of all MIDI events preceeding first MIDI note event
203
+ #### The list also includes the last note event of the MIDI which is useful for measuring runtime of the MIDI
204
+ #### The list follows the MIDI.py score format
205
+
206
+ ****
207
+
208
+ ### Mono melodies
209
+
210
+ #### This data contains information about all MIDIs with at least one monophonic melody
211
+ #### The data in a form of list of tuples where first element represents monophonic melody patch/instrument
212
+ #### And the second element of the tuple represents number of notes for indicated patch/instrument
213
+ #### Please note that many MIDIs may have more than one monophonic melody
214
+
215
+ ****
216
+
217
+ ### Pitches patches counts
218
+
219
+ #### This data contains the pitches-patches counts for all MIDIs in the dataset
220
+ #### This information is very useful for de-duping, MIR and statistical analysis
221
+
222
+ ****
223
+
224
+ ### Pitches sums
225
+
226
+ #### This data contains MIDI pitches sums for all MIDIs in the dataset
227
+ #### Pitches sums can be used for de-duping, MIR and comparative analysis
228
+
229
+ ****
230
+
231
+ ### Signatures
232
+
233
+ #### This data contains two signatures for each MIDI in the dataset:
234
+
235
+ * ##### Full signature with 577 features
236
+ * ##### Basic signature with 392 features
237
+
238
+ #### Both signatures are presented as lists of tuples where first element is a feature and the second element is a feature count
239
+ #### Both signatures also include number of bad features indicated by -1
240
+
241
+ #### Signatures features are divided into three groups:
242
+
243
+ * ##### MIDI pitches (represented by values 0-127)
244
+ * ##### MIDI chords (represented by values 128-449 or 128-264)
245
+ * ##### MIDI drum pitches (represented by values 449-577 or 264-392)
246
+
247
+ #### Both signatures can be very effectively used for MIDI comparison or MIDI search and filtering
248
+
249
+ ****
250
+
251
+ ### Text captions
252
+
253
+ #### This data contains detailed textual description of music in each MIDI in the dataset
254
+ #### These captions can be used for text-to-music tasks and for MIR tasks
255
+
256
+ ***
257
+
258
+ ## Citation
259
 
260
  ```bibtex
261
  @misc{GodzillaMIDIDataset2025,
 
269
  ***
270
 
271
  ### Project Los Angeles
272
+ ### Tegridy Code 2025