-
Notifications
You must be signed in to change notification settings - Fork 0
/
data_loader_dom.py
323 lines (244 loc) · 6.07 KB
/
data_loader_dom.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
import numpy as np
from sklearn import cross_validation
import csv
from collections import Counter
from sklearn.cross_validation import KFold
from hmm_with_mini_dom import *
import logging
import sys
logger = logging.getLogger()
logger.setLevel(logging.DEBUG)
ch = logging.StreamHandler(sys.stdout)
ch.setLevel(logging.DEBUG)
logger.addHandler(ch)
class DataLoader(object):
"""
Class for loading data from wjazzd.db
Data has been loaded with necessary info into csv file
"""
def __init__(self):
self.XX = []
self.Y = []
self.keys = []
def load(self,csv_file_name):
raw_XX = [] # 3D list (2nd dim is mutable)
raw_Y = [] # 2D list (2nd dim is mutable)
with open(csv_file_name) as csv_file:
reader = csv.DictReader(csv_file,delimiter=';')
past_name = None
X = []
y = []
for row in reader:
# Each row corresponds to a frame (bar)
# Using 'filename_sv' to determine song boundaries
if past_name != row['filename_sv']:
if X:
raw_XX.append(X)
if y:
raw_Y.append(y)
X = []
y = []
past_name = row['filename_sv']
# Get rid of songs with no key
if not row['key']:
continue
# Note: mode not currently used
key, mode = self._process_key(row['key'])
self.keys.append(key)
X_i = self._process_Xi(row['tpc_raw'],row['durtatum'])
y_i = self._process_yi(row['chords_raw'],row['chord_types_raw'],key)
# get rid of bars with no chords
if not y_i:
continue
X.append(X_i)
y.append(y_i)
if X:
raw_XX.append(X)
if y:
raw_Y.append(y)
self.XX = self._process_XX(raw_XX) # 4D
self.Y = self._process_Y(raw_Y) # 2D
def _process_key(self,key_raw):
"""
Returns absolute pitch class of key_raw and mode
If key_raw is minor then mode = 'min'
Everything else treated as major
Note: mode not currently used
"""
try:
note = self._get_pc(key_raw[0],key_raw[1])
except IndexError:
note = self._get_pc(key_raw[0])
if 'min' in key_raw:
mode = 'min'
else:
mode = 'maj'
return note, mode
def _get_pc(self,key,modifier=None):
if modifier == '#':
m = 1
elif modifier == 'b':
m = -1
else:
m = 0
k = key.capitalize()
d = ord(k) - 67
# For A and B
if d < 0:
d = 7 + d
# C,D,E
if d < 3:
pc = 2 * d
# F,G,A,B
else:
pc = (2 * d) - 1
pc = (pc + m) % 12
return pc
def _process_string_list(self,tpc_hist_counts):
"""
Convert from string to list
"""
return map(float,tpc_hist_counts.split(','))
def _process_Xi(self, tpc_raw, durtatum):
"""
Process input vectors
Xi: List of numpy arrays
"""
features_strings = [tpc_raw, durtatum]
features_lists = [None]*2
for i, feat in enumerate(features_strings):
features_lists[i] = self._process_string_list(feat)
features = zip(features_lists[0],features_lists[1])
return features
def _process_yi(self,chords_raw,chord_types_raw,key):
"""
Returns tpc of most occuring chord
major and minor
"""
chord_list = chords_raw.split(',')
counter = Counter(chord_list)
mode = counter.most_common(1)
chord = mode[0][0]
if chord == 'NA':
return None
type_list = chord_types_raw.split(',')
idx = chord_list.index(chord)
chord_type_str = type_list[idx]
if ('j' in chord_type_str) or ('6' in chord_type_str):
chord_type = 0
elif ('-' in chord_type_str) or ('m' in chord_type_str):
chord_type = 1
elif ('7' in chord_type_str):
chord_type = 2
else:
chord_type = 0
try:
pc = self._get_pc(chord[0],chord[1])
except IndexError:
pc = self._get_pc(chord[0])
tpc = (pc - key) % 12
if chord_type == 0:
return (tpc * 3) + 1 + chord_type
def _process_Ai(self,tpc_raw):
"""
Returns sequence of notes
"""
return self._process_Xi(tpc_raw)
def _process_Mi(self,metrical_weight):
"""
Returns indexes of first and thirs beat notes
If none then looks at all notes
"""
ms = self._process_Xi(metrical_weight)
indexes = []
for i, m in enumerate(ms):
if m > 1:
indexes.append(i)
if not indexes:
for i, m in enumerate(ms):
indexes.append(i)
return indexes
def _process_XX(self,raw_XX):
"""
Does nothing at present
"""
return raw_XX
def _process_Y(self,raw_Y):
"""
Does nothing at present
"""
return raw_Y
def _process_AA(self,raw_AA):
"""
Does nothing at present
"""
return raw_AA
def _process_MM(self,raw_MM):
"""
Does nothing at present
"""
return raw_MM
def generate_train_test(self, partition=0.33):
n = len(self.XX)
j = int(n - (float(n) * partition))
XX_train = self.XX[0:j]
Y_train = self.Y[0:j]
keys_train = self.keys[0:j]
XX_test = self.XX[j:n]
Y_test = self.Y[j:n]
keys_test = self.keys[j:n]
data = Data(XX_train, Y_train, XX_test, Y_test, \
keys_train, keys_test,)
return data
class Data(object):
"""
Simple data holder
"""
def __init__(self, XX_train, Y_train, XX_test, \
Y_test, keys_train, keys_test):
self.XX_train = XX_train
self.Y_train = Y_train
self.XX_test = XX_test
self.Y_test = Y_test
self.keys_train = keys_train
self.keys_test = keys_test
def cross_val(self,n=10):
"""
n : n-crossvalidation
"""
XX_train = self.XX_train
Y_train = self.Y_train
L = len(self.XX_train)
kf = KFold(L,n_folds=n)
models = []
scores = []
c = 0
for c, (train_indexes, val_indexes) in enumerate(kf):
logger.debug("On Fold " + str(c))
xx_train = []
y_train = []
xx_val = []
y_val = []
for i in train_indexes:
xx_train.append(XX_train[i][:])
y_train.append(Y_train[i][:])
for j in val_indexes:
xx_val.append(XX_train[j][:])
y_val.append(Y_train[j][:])
model = HMM()
logger.debug(str(len(xx_train)) + "," + str(len(y_train)))
model.train(xx_train,y_train)
logger.debug("Testing ...")
count, correct = model.test(xx_val,y_val)
score = float(correct) / float(count)
logger.debug("Fold " + str(c) + " scored " + str(score))
models.append(model)
scores.append(score)
max_score = max(scores)
print max_score
max_index = 0
for idx, score in enumerate(scores):
if score == max_score:
max_index = idx
break
return models[max_index]