-
Notifications
You must be signed in to change notification settings - Fork 1
/
hannds_data.py
335 lines (255 loc) · 12.3 KB
/
hannds_data.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
"""Provides training, validation and test2 data."""
import math
from collections import namedtuple
import os
import numpy as np
import pretty_midi
from torch.utils.data import Dataset, DataLoader
from torch.utils.data.sampler import Sampler
import hannds_files
def train_valid_test_data_windowed(len_train_sequence, cv_partition=1, debug=False):
"""Training, validation and test data in the categorical windowed format"""
module_directory = os.path.dirname(os.path.abspath(__file__))
hannds_dir = os.path.join(module_directory, 'data-hannds')
make_npz_files(overwrite=False, midi_dir=hannds_dir, subdir='windowed', convert_func=convert_windowed)
all_files = hannds_files.TrainValidTestFiles(hannds_dir)
all_files.get_partition(cv_partition)
train_data = HanndsDataset(hannds_dir, all_files.train_files, 'windowed', len_sequence=len_train_sequence,
debug=debug)
valid_data = HanndsDataset(hannds_dir, all_files.valid_files, 'windowed', len_sequence=-1, debug=debug)
test_data = HanndsDataset(hannds_dir, all_files.test_files, 'windowed', len_sequence=-1, debug=debug)
return train_data, valid_data, test_data
def train_valid_test_data_windowed_tanh(len_train_sequence, cv_partition=1, debug=False):
"""Training, validation and test data in the windowed +/-1 format"""
module_directory = os.path.dirname(os.path.abspath(__file__))
hannds_dir = os.path.join(module_directory, 'data-hannds')
make_npz_files(overwrite=False, midi_dir=hannds_dir, subdir='windowed_tanh', convert_func=convert_windowed_tanh)
all_files = hannds_files.TrainValidTestFiles(hannds_dir)
all_files.get_partition(cv_partition)
train_data = HanndsDataset(hannds_dir, all_files.train_files, 'windowed_tanh', len_sequence=len_train_sequence,
debug=debug)
valid_data = HanndsDataset(hannds_dir, all_files.valid_files, 'windowed_tanh', len_sequence=-1, debug=debug)
test_data = HanndsDataset(hannds_dir, all_files.test_files, 'windowed_tanh', len_sequence=-1, debug=debug)
return train_data, valid_data, test_data
def train_valid_test_data_event(len_train_sequence, cv_partition=1, debug=False):
"""Training, validation and test data in the MIDI event format"""
module_directory = os.path.dirname(os.path.abspath(__file__))
hannds_dir = os.path.join(module_directory, 'data-hannds')
make_npz_files(overwrite=False, midi_dir=hannds_dir, subdir='event', convert_func=convert_event)
all_files = hannds_files.TrainValidTestFiles(hannds_dir)
all_files.get_partition(cv_partition)
train_data = HanndsDataset(hannds_dir, all_files.train_files, 'event', len_sequence=len_train_sequence, debug=debug)
valid_data = HanndsDataset(hannds_dir, all_files.valid_files, 'event', len_sequence=-1, debug=debug)
test_data = HanndsDataset(hannds_dir, all_files.test_files, 'event', len_sequence=-1, debug=debug)
return train_data, valid_data, test_data
def train_valid_test_data_magenta(len_train_sequence, cv_partition=1, debug=False):
"""Training, validation and test data in the magenta project's MIDI event format for Performance RNN"""
module_directory = os.path.dirname(os.path.abspath(__file__))
hannds_dir = os.path.join(module_directory, 'data-hannds')
make_npz_files(overwrite=False, midi_dir=hannds_dir, subdir='magenta', convert_func=convert_magenta)
all_files = hannds_files.TrainValidTestFiles(hannds_dir)
all_files.get_partition(cv_partition)
train_data = HanndsDataset(hannds_dir, all_files.train_files, 'magenta', len_sequence=len_train_sequence,
debug=debug)
valid_data = HanndsDataset(hannds_dir, all_files.valid_files, 'magenta', len_sequence=-1, debug=debug)
test_data = HanndsDataset(hannds_dir, all_files.test_files, 'magenta', len_sequence=-1, debug=debug)
return train_data, valid_data, test_data
WINDOWED_NOT_PLAYED = 0
WINDOWED_LEFT_HAND = 1
WINDOWED_RIGHT_HAND = 2
WINDOWED_TANH_LEFT_HAND = -1
WINDOWED_TANH_RIGHT_HAND = +1
WINDOWED_TANH_NOT_PLAYED = 0
def make_npz_files(overwrite, midi_dir, subdir, convert_func):
midi_files = hannds_files.all_midi_files(midi_dir, absolute_path=True)
npy_paths = hannds_files.npz_files_for_midi(midi_dir, midi_files, subdir)
for midi_file, npy_path in zip(midi_files, npy_paths):
if overwrite or not os.path.exists(npy_path):
print("Converting file '" + midi_file + "'")
midi = pretty_midi.PrettyMIDI(midi_file)
X, Y = convert_func(midi)
np.savez(npy_path, X=X, Y=Y)
def convert_windowed(midi):
ms_window = 20
samples_per_sec = 1000 // ms_window
midi_data = midi.instruments[0], midi.instruments[1]
# Generate empty numpy arrays
n_windows = math.ceil(midi.get_end_time() * samples_per_sec)
hands = np.zeros((
n_windows, # Number of windows to calculate
2, # Left and right hand = 2 hands
88 # 88 keys on a piano
), dtype=np.bool)
# Fill array with data
for hand, midi_hand in enumerate(midi_data):
for note in midi_hand.notes:
start = int(math.floor(note.start * samples_per_sec))
end = int(math.ceil(note.end * samples_per_sec))
hands[start:end, hand, note.pitch - 21] = True
data = hands
batch_size = n_windows
# Merge both hands in a single array
X = np.logical_or(
data[:, 0, :],
data[:, 1, :]
)
Y = np.full((batch_size, 88), WINDOWED_NOT_PLAYED)
Y[data[:, 0, :]] = WINDOWED_LEFT_HAND
Y[data[:, 1, :]] = WINDOWED_RIGHT_HAND
return X.astype(np.float32), Y.astype(np.longlong)
def convert_windowed_tanh(midi):
X, Y = convert_windowed(midi)
Y[Y == WINDOWED_LEFT_HAND] = WINDOWED_TANH_LEFT_HAND
Y[Y == WINDOWED_RIGHT_HAND] = WINDOWED_TANH_RIGHT_HAND
return X, Y.astype(np.float32)
def convert_event(midi):
num_notes = 0
for instrument in midi.instruments:
num_notes += len(instrument.notes)
# Generate empty numpy array
events = np.empty((2 * num_notes, 5))
# Generate event list
# Format:[ 0 , 1 , 2 , 3 , 4 ]
# [timestamp, midi_pitch/127, is_start, is_end, left|right]
i = 0
for hand, instrument in enumerate(midi.instruments):
notes = instrument.notes
for note in notes:
events[i:i + 2, 1] = note.pitch / 127
events[i:i + 2, 4] = hand # 0 = Right, 1 = Left
events[i, 0] = note.start # Timestamp note on
events[i, 2:4] = [1, 0] # One hot vector for note on
events[i + 1, 0] = note.end # Timestamp note off
events[i + 1, 2:4] = [0, 1] # One hot vector for note off
i += 2
# Compute timestamp deltas
events = events[events[:, 0].argsort()] # Sort by column 0
events[1:, 0] = np.diff(events[:, 0])
events[0, 0] = 0 # Something suitable for the first entry
events[:, 0] = np.maximum(events[:, 0], 0) # Don't allow negative time deltas (happens at file borders)
Y = events[:, 4].astype(np.float32)
return events[:, :4].astype(np.float32), Y
def convert_magenta(midi):
num_notes = 0
for instrument in midi.instruments:
num_notes += len(instrument.notes)
# Generate empty numpy array
events = np.zeros((2 * num_notes, 128 + 128 + 100 + 32 + 2))
# Format:[ 0-127 , 128-255, 256-355, 356-387, 388, 389 ]
# [note on, note off, time-shift, velocity, hand, absolute time]
i = 0
for hand, instrument in enumerate(midi.instruments):
notes = instrument.notes
for note in notes:
velocity_0_to_32 = note.velocity // 4
events[i, note.pitch] = 1 # Note on
events[i, -1] = note.start # Timestamp note on
events[i + 1, note.pitch + 128] = 1 # Note off
events[i + 1, -1] = note.end # Timestamp note off
events[i:i + 2, 356 + velocity_0_to_32] = 1 # Set velocity
events[i:i + 2, -2] = hand
i += 2
events = events[events[:, -1].argsort()] # Sort by timestamp (last column)
delta_time = np.diff(events[:, -1])
delta_time = np.clip(delta_time, 0.01, 10.0)
delta_time = (delta_time - 0.01) / (10.0 - 0.01) * 99.5
delta_time = delta_time.astype(np.int)
events[0, 355] = 1 # Assume ten seconds silence before first note is played
for i in range(1, len(events)):
events[i, 256 + delta_time[i - 1]] = 1
Y = events[:, -2].astype(np.float32)
return events[:, :-2].astype(np.float32), Y
class HanndsDataset(Dataset):
"""Provides the Hannds dataset.
Args:
midi_files: list of MIDI files to load
subdir: subdir under preprocessed where npz files can be found,
e.g. 'event', 'windowed', 'windowed_tanh'
len_sequence: produced sequences are len_sequence long.
len_sequence == -1 produces single max length sequence
debug: load minimal data for faster debugging
"""
XY = namedtuple('XY', ['X', 'Y'])
def __init__(self, midi_dir, midi_files, subdir, len_sequence, debug):
self.len_sequence = len_sequence
npz_files = hannds_files.npz_files_for_midi(midi_dir, midi_files, subdir)
if debug:
load_all = [np.load(npz_file) for npz_file in npz_files[:2]]
else:
load_all = [np.load(npz_file) for npz_file in npz_files]
X = np.concatenate([item['X'] for item in load_all], axis=0)
Y = np.concatenate([item['Y'] for item in load_all], axis=0)
self.data = self.XY(X, Y)
def __len__(self):
if self.len_sequence == -1:
return 1
else:
return self.data.X.shape[0] // self.len_sequence - 1
def __getitem__(self, idx):
if self.len_sequence == -1:
return self.data.X, self.data.Y
else:
start = idx * self.len_sequence
end = start + self.len_sequence
res1 = self.data.X[start: end]
res2 = self.data.Y[start: end]
assert res1.shape[0] == res2.shape[0] == self.len_sequence
return res1, res2
def len_features(self):
return self.data.X.shape[1]
def num_categories(self):
return np.max(self.data.Y) + 1
class ContinuationSampler(Sampler):
def __init__(self, len_dataset, batch_size):
Sampler.__init__(self, None)
self.len_dataset = len_dataset
self.batch_size = batch_size
def __iter__(self):
return iter(self._generate_indices())
def __len__(self):
num_batches = self.len_dataset // self.batch_size
return num_batches * self.batch_size
def _generate_indices(self):
num_batches = step = self.len_dataset // self.batch_size
for i in range(num_batches):
index = i
for j in range(self.batch_size):
yield index
index += step
return
def main():
module_directory = os.path.dirname(os.path.abspath(__file__))
hannds_dir = os.path.join(module_directory, 'data-hannds')
print('Making magenta')
make_npz_files(overwrite=True, midi_dir=hannds_dir, subdir='magenta', convert_func=convert_magenta)
print('Making windowed')
make_npz_files(overwrite=True, midi_dir=hannds_dir, subdir='windowed', convert_func=convert_windowed)
print()
print('Making windowed_tanh')
make_npz_files(overwrite=True, midi_dir=hannds_dir, subdir='windowed_tanh', convert_func=convert_windowed_tanh)
print()
print('Making event')
make_npz_files(overwrite=True, midi_dir=hannds_dir, subdir='event', convert_func=convert_event)
print()
f = hannds_files.TrainValidTestFiles(hannds_dir)
f.get_partition(1)
data = HanndsDataset(hannds_dir, f.train_files, 'windowed', 100, debug=False)
import matplotlib
matplotlib.use("TkAgg")
import matplotlib.pyplot as plt
batchX, batchY = data[0]
batch_size = 50
continuity = ContinuationSampler(len(data), batch_size)
loader = DataLoader(data, batch_size, sampler=continuity)
for idx, (X_batch, Y_batch) in enumerate(loader):
X = X_batch[8]
Y = Y_batch[8]
img = np.full((X.shape[0] + 2, X.shape[1]), -0.2)
img[:-2] = X
img[-1] = Y[-1, :] - 1.0
plt.imshow(img, cmap='bwr', origin='lower', vmin=-1, vmax=1)
plt.show()
if idx == 5:
break
if __name__ == '__main__':
main()