-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrdd.py
504 lines (466 loc) · 23.2 KB
/
rdd.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
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
#!/usr/bin/python
# -*- coding: utf-8 -*-
import pyspark
import pyspark.ml.feature
import pyspark.mllib.linalg
from scipy.spatial import distance
from pyspark.ml.param.shared import *
from pyspark.mllib.linalg import Vectors, VectorUDT
from pyspark.ml.feature import VectorAssembler
import numpy as np
import scipy as sp
from scipy.signal import butter, lfilter, freqz, correlate2d, sosfilt
from pyspark import SparkContext, SparkConf
from pyspark.sql import SQLContext, Row
from pyspark.sql import SparkSession
import edlib
import sys
import time
confCluster = SparkConf().setAppName("MusicSimilarity Cluster")
confCluster.set("spark.driver.memory", "1g")
confCluster.set("spark.executor.memory", "1g")
confCluster.set("spark.driver.memoryOverhead", "500m")
confCluster.set("spark.executor.memoryOverhead", "500m")
#Be sure that the sum of the driver or executor memory plus the driver or executor memory overhead is always less than the value of yarn.nodemanager.resource.memory-mb
#confCluster.set("yarn.nodemanager.resource.memory-mb", "192000")
#spark.driver/executor.memory + spark.driver/executor.memoryOverhead < yarn.nodemanager.resource.memory-mb
confCluster.set("spark.yarn.executor.memoryOverhead", "512")
#set cores of each executor and the driver -> less than avail -> more executors spawn
confCluster.set("spark.driver.cores", "1")
confCluster.set("spark.executor.cores", "1")
confCluster.set("spark.dynamicAllocation.enabled", "True")
confCluster.set("spark.dynamicAllocation.minExecutors", "4")
confCluster.set("spark.dynamicAllocation.maxExecutors", "4")
confCluster.set("yarn.nodemanager.vmem-check-enabled", "false")
sc = SparkContext(conf=confCluster)
sqlContext = SQLContext(sc)
spark = SparkSession.builder.master("cluster").appName("MusicSimilarity").getOrCreate()
numPartitions = 32
repartition_count = 32
time_dict = {}
#https://en.wikibooks.org/wiki/Algorithm_Implementation/Strings/Levenshtein_distance#Python
def naive_levenshtein_1(source, target):
if len(source) < len(target):
return naive_levenshtein_1(target, source)
# So now we have len(source) >= len(target).
if len(target) == 0:
return len(source)
# We call tuple() to force strings to be used as sequences
# ('c', 'a', 't', 's') - numpy uses them as values by default.
source = np.array(tuple(source))
target = np.array(tuple(target))
# We use a dynamic programming algorithm, but with the
# added optimization that we only need the last two rows
# of the matrix.
previous_row = np.arange(target.size + 1)
for s in source:
# Insertion (target grows longer than source):
current_row = previous_row + 1
# Substitution or matching:
# Target and source items are aligned, and either
# are different (cost of 1), or are the same (cost of 0).
current_row[1:] = np.minimum(
current_row[1:],
np.add(previous_row[:-1], target != s))
# Deletion (target grows shorter than source):
current_row[1:] = np.minimum(
current_row[1:],
current_row[0:-1] + 1)
previous_row = current_row
return previous_row[-1]
def chroma_cross_correlate_valid(chroma1_par, chroma2_par):
length1 = chroma1_par.size/12
chroma1 = np.empty([12, length1])
length2 = chroma2_par.size/12
chroma2 = np.empty([12, length2])
if(length1 > length2):
chroma1 = chroma1_par.reshape(12, length1)
chroma2 = chroma2_par.reshape(12, length2)
else:
chroma2 = chroma1_par.reshape(12, length1)
chroma1 = chroma2_par.reshape(12, length2)
#full
#correlation = np.zeros([length1 + length2 - 1])
#valid
#correlation = np.zeros([max(length1, length2) - min(length1, length2) + 1])
#same
correlation = np.zeros([max(length1, length2)])
for i in range(12):
correlation = correlation + np.correlate(chroma1[i], chroma2[i], "same")
#remove offset to get rid of initial filter peak(highpass of jump from 0-20)
correlation = correlation - correlation[0]
sos = butter(1, 0.1, 'high', analog=False, output='sos')
correlation = sosfilt(sos, correlation)[:]
return np.max(correlation)
#get 13 mean and 13x13 cov as vectors
def jensen_shannon(vec1, vec2):
mean1 = np.empty([13, 1])
mean1 = vec1[0:13]
#print mean1
cov1 = np.empty([13,13])
cov1 = vec1[13:].reshape(13, 13)
#print cov1
mean2 = np.empty([13, 1])
mean2 = vec2[0:13]
#print mean1
cov2 = np.empty([13,13])
cov2 = vec2[13:].reshape(13, 13)
#print cov1
mean_m = 0.5 * (mean1 + mean2)
cov_m = 0.5 * (cov1 + mean1 * np.transpose(mean1)) + 0.5 * (cov2 + mean2 * np.transpose(mean2)) - (mean_m * np.transpose(mean_m))
div = 0.5 * np.log(np.linalg.det(cov_m)) - 0.25 * np.log(np.linalg.det(cov1)) - 0.25 * np.log(np.linalg.det(cov2))
#print("JENSEN_SHANNON_DIVERGENCE")
if np.isnan(div):
div = np.inf
#div = None
if div <= 0:
div = div * (-1)
#print div
return div
def is_invertible(a):
return a.shape[0] == a.shape[1] and np.linalg.matrix_rank(a) == a.shape[0]
#get 13 mean and 13x13 cov as vectors
def symmetric_kullback_leibler(vec1, vec2):
mean1 = np.empty([13, 1])
mean1 = vec1[0:13]
#print mean1
cov1 = np.empty([13,13])
cov1 = vec1[13:].reshape(13, 13)
#print cov1
mean2 = np.empty([13, 1])
mean2 = vec2[0:13]
#print mean1
cov2 = np.empty([13,13])
cov2 = vec2[13:].reshape(13, 13)
if (is_invertible(cov1) and is_invertible(cov2)):
d = 13
div = 0.25 * (np.trace(cov1 * np.linalg.inv(cov2)) + np.trace(cov2 * np.linalg.inv(cov1)) + np.trace( (np.linalg.inv(cov1) + np.linalg.inv(cov2)) * (mean1 - mean2)**2) - 2*d)
else:
div = np.inf
print("ERROR: NON INVERTIBLE SINGULAR COVARIANCE MATRIX \n\n\n")
#print div
return div
#get 13 mean and 13x13 cov + var as vectors
def get_euclidean_mfcc(vec1, vec2):
mean1 = np.empty([13, 1])
mean1 = vec1[0:13]
cov1 = np.empty([13,13])
cov1 = vec1[13:].reshape(13, 13)
mean2 = np.empty([13, 1])
mean2 = vec2[0:13]
cov2 = np.empty([13,13])
cov2 = vec2[13:].reshape(13, 13)
iu1 = np.triu_indices(13)
#You need to pass the arrays as an iterable (a tuple or list), thus the correct syntax is np.concatenate((,),axis=None)
div = distance.euclidean(np.concatenate((mean1, cov1[iu1]),axis=None), np.concatenate((mean2, cov2[iu1]),axis=None))
return div
#even faster than numpy version
def naive_levenshtein(seq1, seq2):
result = edlib.align(seq1, seq2)
return(result["editDistance"])
tic1 = int(round(time.time() * 1000))
#########################################################
# Pre- Process RP for Euclidean
#
rp = sc.textFile("features[0-9]*/out[0-9]*.rp", minPartitions=repartition_count)
rp = rp.map(lambda x: x.replace(' ', '').replace('[', '').replace(']', '').replace(';', ','))
rp = rp.map(lambda x: x.replace('.mp3,', '.mp3;').replace('.wav,', '.wav;').replace('.m4a,', '.m4a;').replace('.aiff,', '.aiff;').replace('.aif,', '.aif;').replace('.au,', '.au;').replace('.flac,', '.flac;').replace('.ogg,', '.ogg;'))
rp = rp.map(lambda x: x.split(';'))
rp = rp.map(lambda x: (x[0].replace(";","").replace(".","").replace(",","").replace(" ",""), x[1].split(",")))
kv_rp= rp.map(lambda x: (x[0], list(x[1:])))
rp_vec = kv_rp.map(lambda x: (x[0], Vectors.dense(x[1]))).persist()
#########################################################
# Pre- Process RH for Euclidean
#
rh = sc.textFile("features[0-9]*/out[0-9]*.rh", minPartitions=repartition_count)
rh = rh.map(lambda x: x.replace(' ', '').replace('[', '').replace(']', '').replace(';', ','))
rh = rh.map(lambda x: x.replace('.mp3,', '.mp3;').replace('.wav,', '.wav;').replace('.m4a,', '.m4a;').replace('.aiff,', '.aiff;').replace('.aif,', '.aif;').replace('.au,', '.au;').replace('.flac,', '.flac;').replace('.ogg,', '.ogg;'))
rh = rh.map(lambda x: x.split(';'))
rh = rh.map(lambda x: (x[0].replace(";","").replace(".","").replace(",","").replace(" ",""), x[1].split(",")))
kv_rh= rh.map(lambda x: (x[0], list(x[1:])))
rh_vec = kv_rh.map(lambda x: (x[0], Vectors.dense(x[1]))).persist()
#########################################################
# Pre- Process BH for Euclidean
#
bh = sc.textFile("features[0-9]*/out[0-9]*.bh", minPartitions=repartition_count)
bh = bh.map(lambda x: x.split(";"))
kv_bh = bh.map(lambda x: (x[0].replace(' ', '').replace('[', '').replace(']', '').replace(';', ','), x[1], Vectors.dense(x[2].replace(' ', '').replace('[', '').replace(']', '').split(','))))
bh_vec = kv_bh.map(lambda x: (x[0].replace(";","").replace(".","").replace(",","").replace(" ",""), Vectors.dense(x[2]), x[1])).persist()
#########################################################
# Pre- Process Notes for Levenshtein
#
notes = sc.textFile("features[0-9]*/out[0-9]*.notes", minPartitions=repartition_count)
notes = notes.map(lambda x: x.split(';'))
notes = notes.map(lambda x: (x[0].replace(' ', '').replace('[', '').replace(']', '').replace(';', ','), x[1], x[2], x[3].replace("10",'K').replace("11",'L').replace("0",'A').replace("1",'B').replace("2",'C').replace("3",'D').replace("4",'E').replace("5",'F').replace("6",'G').replace("7",'H').replace("8",'I').replace("9",'J')))
notes = notes.map(lambda x: (x[0].replace(";","").replace(".","").replace(",","").replace(" ",""), x[3].replace(',','').replace(' ',''), x[1], x[2])).persist()
#########################################################
# Pre- Process MFCC for SKL and JS
#
mfcc = sc.textFile("features[0-9]*/out[0-9]*.mfcckl", minPartitions=repartition_count)
mfcc = mfcc.map(lambda x: x.replace(' ', '').replace('[', '').replace(']', '').replace(';', ','))
mfcc = mfcc.map(lambda x: x.replace('.mp3,', '.mp3;').replace('.wav,', '.wav;').replace('.m4a,', '.m4a;').replace('.aiff,', '.aiff;').replace('.aif,', '.aif;').replace('.au,', '.au;').replace('.flac,', '.flac;').replace('.ogg,', '.ogg;'))
mfcc = mfcc.map(lambda x: x.split(';'))
mfcc = mfcc.map(lambda x: (x[0].replace(";","").replace(".","").replace(",","").replace(" ",""), x[1].split(',')))
mfccVec = mfcc.map(lambda x: (x[0], Vectors.dense(x[1]))).persist()
#########################################################
# Pre- Process Chroma for cross-correlation
#
chroma = sc.textFile("features[0-9]*/out[0-9]*.chroma", minPartitions=repartition_count)
chroma = chroma.map(lambda x: x.replace(' ', '').replace(';', ','))
chroma = chroma.map(lambda x: x.replace('.mp3,', '.mp3;').replace('.wav,', '.wav;').replace('.m4a,', '.m4a;').replace('.aiff,', '.aiff;').replace('.aif,', '.aif;').replace('.au,', '.au;').replace('.flac,', '.flac;').replace('.ogg,', '.ogg;'))
chroma = chroma.map(lambda x: x.split(';'))
#try to filter out empty elements
chroma = chroma.filter(lambda x: (not x[1] == '[]') and (x[1].startswith("[[0.") or x[1].startswith("[[1.")))
chromaRdd = chroma.map(lambda x: (x[0].replace(";","").replace(".","").replace(",","").replace(" ","").replace(' ', '').replace('[', '').replace(']', ''),(x[1].replace(' ', '').replace('[', '').replace(']', '').split(','))))
chromaVec = chromaRdd.map(lambda x: (x[0], Vectors.dense(x[1]))).persist()
#Force Transformation
#rp_vec.count()
#rh_vec.count()
#bh_vec.count()
#notes.count()
#mfccVec.count()
#chromaVec.count()
tac1 = int(round(time.time() * 1000))
time_dict['PREPROCESS: ']= tac1 - tic1
def get_neighbors_rp_euclidean(song):
#########################################################
# Get Neighbors
#
comparator = rp_vec.lookup(song.replace(' ', '').replace('[', '').replace(']', '').replace(']', '').replace(';', ','))
comparator_value = comparator[0]
resultRP = rp_vec.map(lambda x: (x[0], distance.euclidean(np.array(x[1]), np.array(comparator_value))))
#OLD AND VERY SLOW WAY
#max_val = resultRP.max(lambda x:x[1])[1]
#min_val = resultRP.min(lambda x:x[1])[1]
#WAY BETTER
stat = resultRP.map(lambda x: x[1]).stats()
max_val = stat.max()
min_val = stat.min()
resultRP = resultRP.map(lambda x: (x[0], (x[1]-min_val)/(max_val-min_val)))
return resultRP
def get_neighbors_rh_euclidean(song):
#########################################################
# Get Neighbors
#
comparator = rh_vec.lookup(song.replace(' ', '').replace('[', '').replace(']', '').replace(';', ','))
comparator_value = comparator[0]
resultRH = rh_vec.map(lambda x: (x[0], distance.euclidean(np.array(x[1]), np.array(comparator_value))))
stat = resultRH.map(lambda x: x[1]).stats()
max_val = stat.max()
min_val = stat.min()
resultRH = resultRH.map(lambda x: (x[0], (x[1]-min_val)/(max_val-min_val)))
#resultRH.sortBy(lambda x: x[1]).take(100)
return resultRH
def get_neighbors_bh_euclidean(song):
#########################################################
# Get Neighbors
#
comparator = bh_vec.lookup(song.replace(' ', '').replace('[', '').replace(']', '').replace(';', ','))
comparator_value = comparator[0]
#print(np.array(bh_vec.first()[1]))
#print ( np.array(comparator_value))
resultBH = bh_vec.map(lambda x: (x[0], distance.euclidean(np.array(x[1]), np.array(comparator_value))))
stat = resultBH.map(lambda x: x[1]).stats()
max_val = stat.max()
min_val = stat.min()
resultBH = resultBH.map(lambda x: (x[0], (x[1]-min_val)/(max_val-min_val)))
#resultBH.sortBy(lambda x: x[1]).take(100)
return resultBH
def get_neighbors_notes(song):
#########################################################
# Get Neighbors
#
comparator = notes.lookup(song.replace(' ', '').replace('[', '').replace(']', '').replace(']', '').replace(';', ','))
comparator_value = comparator[0]
resultNotes = notes.map(lambda x: (x[0], naive_levenshtein(str(x[1]), str(comparator_value)), x[1], x[2]))
stat = resultNotes.map(lambda x: x[1]).stats()
max_val = stat.max()
min_val = stat.min()
resultNotes = resultNotes.map(lambda x: (x[0], (float(x[1])-min_val)/(max_val-min_val), x[2], x[3]))
return resultNotes
def get_neighbors_mfcc_euclidean(song):
#########################################################
# Get Neighbors
#
comparator = mfccVec.lookup(song.replace(' ', '').replace('[', '').replace(']', '').replace(';', ','))
comparator_value = Vectors.dense(comparator[0])
resultMfcc = mfccVec.map(lambda x: (x[0], get_euclidean_mfcc(np.array(x[1]), np.array(comparator_value)))).cache()
stat = resultMfcc.map(lambda x: x[1]).stats()
max_val = stat.max()
min_val = stat.min()
resultMfcc = resultMfcc.map(lambda x: (x[0], (x[1]-min_val)/(max_val-min_val)))
return resultMfcc
def get_neighbors_mfcc_skl(song):
#########################################################
# Get Neighbors
#
comparator = mfccVec.lookup(song.replace(' ', '').replace('[', '').replace(']', '').replace(';', ','))
comparator_value = Vectors.dense(comparator[0])
resultMfcc = mfccVec.map(lambda x: (x[0], symmetric_kullback_leibler(np.array(x[1]), np.array(comparator_value))))
#resultMfcc = resultMfcc.filter(lambda x: x[1] <= 100)
resultMfcc = resultMfcc.filter(lambda x: x[1] != np.inf)
stat = resultMfcc.map(lambda x: x[1]).stats()
max_val = stat.max()
min_val = stat.min()
resultMfcc = resultMfcc.map(lambda x: (x[0], (x[1]-min_val)/(max_val-min_val)))
#resultMfcc.sortBy(lambda x: x[1]).take(100)
return resultMfcc
def get_neighbors_mfcc_js(song):
#########################################################
# Get Neighbors
#
comparator = mfccVec.lookup(song.replace(' ', '').replace('[', '').replace(']', '').replace(';', ','))
comparator_value = Vectors.dense(comparator[0])
resultMfcc = mfccVec.map(lambda x: (x[0], jensen_shannon(np.array(x[1]), np.array(comparator_value))))
#drop non valid rows
resultMfcc = resultMfcc.filter(lambda x: x[1] != np.inf)
stat = resultMfcc.map(lambda x: x[1]).stats()
max_val = stat.max()
min_val = stat.min()
resultMfcc = resultMfcc.map(lambda x: (x[0], (x[1]-min_val)/(max_val-min_val)))
resultMfcc.sortBy(lambda x: x[1]).take(100)
return resultMfcc
def get_neighbors_chroma_corr_valid(song):
#########################################################
# Get Neighbors
#
comparator = chromaVec.lookup(song.replace(' ', '').replace('[', '').replace(']', '').replace(';', ','))
comparator_value = Vectors.dense(comparator[0])
#print(np.array(chromaVec.first()[1]))
#print(np.array(comparator_value))
resultChroma = chromaVec.map(lambda x: (x[0], chroma_cross_correlate_valid(np.array(x[1]), np.array(comparator_value))))
#drop non valid rows
stat = resultChroma.map(lambda x: x[1]).stats()
max_val = stat.max()
min_val = stat.min()
resultChroma = resultChroma.map(lambda x: (x[0], (1 - (x[1]-min_val)/(max_val-min_val))))
resultChroma.sortBy(lambda x: x[1]).take(100)
return resultChroma
def get_nearest_neighbors(song, outname):
tic1 = int(round(time.time() * 1000))
neighbors_rp_euclidean = get_neighbors_rp_euclidean(song).persist()
#print(neighbors_rp_euclidean.count())
tac1 = int(round(time.time() * 1000))
time_dict['RP: ']= tac1 - tic1
tic1 = int(round(time.time() * 1000))
neighbors_rh_euclidean = get_neighbors_rh_euclidean(song).persist()
#print(neighbors_rh_euclidean.count())
tac1 = int(round(time.time() * 1000))
time_dict['RH: ']= tac1 - tic1
tic1 = int(round(time.time() * 1000))
neighbors_notes = get_neighbors_notes(song).persist()
#print(neighbors_notes.count())
tac1 = int(round(time.time() * 1000))
time_dict['NOTE: ']= tac1 - tic1
tic1 = int(round(time.time() * 1000))
neighbors_mfcc_eucl = get_neighbors_mfcc_euclidean(song).persist()
#print(neighbors_mfcc_eucl.count())
tac1 = int(round(time.time() * 1000))
time_dict['MFCC: ']= tac1 - tic1
tic1 = int(round(time.time() * 1000))
neighbors_bh_euclidean = get_neighbors_bh_euclidean(song).persist()
#print(neighbors_bh_euclidean.count())
tac1 = int(round(time.time() * 1000))
time_dict['BH: ']= tac1 - tic1
tic1 = int(round(time.time() * 1000))
neighbors_mfcc_skl = get_neighbors_mfcc_skl(song).persist()
#print(neighbors_mfcc_skl.count())
tac1 = int(round(time.time() * 1000))
time_dict['SKL: ']= tac1 - tic1
tic1 = int(round(time.time() * 1000))
neighbors_mfcc_js = get_neighbors_mfcc_js(song).persist()
#print(neighbors_mfcc_js.count())
tac1 = int(round(time.time() * 1000))
time_dict['JS: ']= tac1 - tic1
tic1 = int(round(time.time() * 1000))
neighbors_chroma = get_neighbors_chroma_corr_valid(song).persist()
#print(neighbors_chroma.count())
tac1 = int(round(time.time() * 1000))
time_dict['CHROMA: ']= tac1 - tic1
tic1 = int(round(time.time() * 1000))
mergedSim = neighbors_rp_euclidean.join(neighbors_rh_euclidean).persist()
mergedSim = mergedSim.map(lambda x: (x[0], list(x[1]))).persist()
mergedSim = mergedSim.join(neighbors_bh_euclidean).persist()
mergedSim = mergedSim.map(lambda x: (x[0], list(x[1][0]) + [float(x[1][1])])).persist()
mergedSim = mergedSim.join(neighbors_chroma).persist()
mergedSim = mergedSim.map(lambda x: (x[0], list(x[1][0]) + [float(x[1][1])])).persist()
mergedSim = mergedSim.join(neighbors_notes).persist()
mergedSim = mergedSim.map(lambda x: (x[0], list(x[1][0]) + [float(x[1][1])])).persist()
mergedSim = mergedSim.join(neighbors_mfcc_eucl).persist()
mergedSim = mergedSim.map(lambda x: (x[0], list(x[1][0]) + [float(x[1][1])])).persist()
mergedSim = mergedSim.join(neighbors_mfcc_skl).persist()
mergedSim = mergedSim.map(lambda x: (x[0], list(x[1][0]) + [float(x[1][1])])).persist()
mergedSim = mergedSim.join(neighbors_mfcc_js).persist()
mergedSim = mergedSim.map(lambda x: (x[0], list(x[1][0]) + [float(x[1][1])])).persist()
mergedSim = mergedSim.map(lambda x: (x[0], x[1], float(np.mean(np.array(x[1]))))).sortBy(lambda x: x[2], ascending = True).persist()
#print mergedSim.first()
tac1 = int(round(time.time() * 1000))
time_dict['JOIN AND AGG: ']= tac1 - tic1
#mergedSim.toDF().toPandas().to_csv(outname, encoding='utf-8')
mergedSim.unpersist()
neighbors_rp_euclidean.unpersist()
neighbors_rh_euclidean.unpersist()
neighbors_notes.unpersist()
neighbors_mfcc_eucl.unpersist()
neighbors_bh_euclidean.unpersist()
neighbors_mfcc_skl.unpersist()
neighbors_mfcc_js.unpersist()
neighbors_chroma.unpersist()
return mergedSim
def get_nearest_neighbors_fast(song, outname):
neighbors_rp_euclidean = get_neighbors_rp_euclidean(song)
neighbors_chroma = get_neighbors_chroma_corr_valid(song)
neighbors_mfcc_js = get_neighbors_mfcc_js(song)
mergedSim = neighbors_mfcc_js.join(neighbors_rp_euclidean)
mergedSim = mergedSim.join(neighbors_chroma)
#mergedSim.toDF().toPandas().to_csv(outname, encoding='utf-8')
mergedSim = mergedSim.map(lambda x: (x[0], ((x[1][0][1] + x[1][1] + x[1][0][0]) / 3))).sortBy(lambda x: x[1], ascending = True)
#mergedSim.toDF().toPandas().to_csv(outname, encoding='utf-8')
return mergedSim
#song = "music/Jazz & Klassik/Keith Jarret - Creation/02-Keith Jarrett-Part II Tokyo.mp3" #private
#song = "music/Rock & Pop/Sabaton-Primo_Victoria.mp3" #1517 artists
#song = "music/Electronic/The XX - Intro.mp3" #100 testset
song1 = "music/Classical/Katrine_Gislinge-Fr_Elise.mp3"
if len (sys.argv) < 2:
song1 = "music/Jazz & Klassik/Keith Jarret - Creation/02-Keith Jarrett-Part II Tokyo.mp3"
song2 = "music/Oldschool/Raid the Arcade - Armada/12 - Rock You Like a Hurricane.mp3"
#song1 = "music/Classical/Katrine_Gislinge-Fr_Elise.mp3" #1517 artists
#song2 = "music/Rock & Pop/Sabaton-Primo_Victoria.mp3" #1517 artists
#song1 = "music/Let_It_Be/beatles+Let_It_Be+06-Let_It_Be.mp3"
#song2 = "music/Lady/styx+Return_To_Paradise_Disc_1_+05-Lady.mp3"
else:
song1 = sys.argv[1]
song2 = sys.argv[1]
song1 = song1.replace(";","").replace(".","").replace(",","").replace(" ","")#.encode('utf-8','replace')
song2 = song2.replace(";","").replace(".","").replace(",","").replace(" ","")#.encode('utf-8','replace')
tic1 = int(round(time.time() * 1000))
result1 = get_nearest_neighbors(song1, "RDD_FULL_SONG1.csv").persist()
result1.sortBy(lambda x: x[1], ascending = True).take(10)
tac1 = int(round(time.time() * 1000))
time_dict['RDD_FULL_SONG1: ']= tac1 - tic1
tic2 = int(round(time.time() * 1000))
result2 = get_nearest_neighbors(song2, "RDD_FULL_SONG2.csv").persist()
result2.sortBy(lambda x: x[1], ascending = True).take(10)
tac2 = int(round(time.time() * 1000))
time_dict['RDD_FULL_SONG2: ']= tac2 - tic2
total2 = int(round(time.time() * 1000))
time_dict['RDD_TOTAL: ']= total2 - total1
tic1 = int(round(time.time() * 1000))
result1.map(lambda x: (x[0], float(x[2]))).toDF().toPandas().to_csv("RDD_FULL_SONG1.csv", encoding='utf-8')
#result1.toDF().toPandas().to_csv("RDD_FULL_SONG1.csv", encoding='utf-8')
result1.unpersist()
tac1 = int(round(time.time() * 1000))
time_dict['CSV1: ']= tac1 - tic1
tic2 = int(round(time.time() * 1000))
result2.map(lambda x: (x[0], float(x[2]))).toDF().toPandas().to_csv("RDD_FULL_SONG2.csv", encoding='utf-8')
#result2.toDF().toPandas().to_csv("RDD_FULL_SONG2.csv", encoding='utf-8')
result2.unpersist()
tac2 = int(round(time.time() * 1000))
time_dict['CSV2: ']= tac2 - tic2
print(time_dict)
rp_vec.unpersist()
rh_vec.unpersist()
bh_vec.unpersist()
notes.unpersist()
mfccVec.unpersist()
chromaVec.unpersist()