-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcharacteristics.py
366 lines (346 loc) · 12.7 KB
/
characteristics.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
from essentia.standard import MonoLoader, TensorflowPredictEffnetDiscogs, TensorflowPredict2D
import numpy as np
def getGenre(filename,num):
audio = MonoLoader(filename=filename, sampleRate=16000, resampleQuality=4)()
embedding_model = TensorflowPredictEffnetDiscogs(graphFilename="essentia graphfiles/Discogs Effnet BS64 Model.pb",
output="PartitionedCall:1")
embeddings = embedding_model(audio)
model = TensorflowPredict2D(graphFilename="essentia graphfiles/MTG Genre Classifier.pb")
predictions = model(embeddings)
data = {
"classes": [
"jazz",
"70s",
"80s",
"hiphop",
"jazz",
"alt/indie",
"rock",
"ambient",
"ambient",
"blues",
"blues",
"jazz",
"hiphop",
"world",
"world",
"ambient",
"symphony",
"symphony",
"rock",
"electronic",
"jazz",
"country/folk",
"country/folk",
"ambient",
"ambient",
"house",
"80s",
"electronic",
"electronic",
"electronic",
"electronic",
"ambient",
"electronic",
"electronic",
"electronic",
"pop",
"world",
"house",
"experimental",
"country/folk",
"funk",
"jazz",
"hiphop",
"rock",
"rock",
"rock",
"hiphop",
"house",
"experimental",
"jazz",
"alt/indie",
"electronic",
"pop",
"rock",
"jazz",
"jazz",
"pop",
"jazz",
"symphony",
"rock",
"experimental",
"jazz",
"rock",
"symphony",
"pop",
"country/folk",
"rock",
"rock",
"rock",
"experimental",
"rock",
"hiphop",
"world",
"rnb",
"rock",
"rock",
"pop",
"soul",
"symphony",
"jazz",
"symphony",
"80s",
"electronic",
"electronic",
"pop",
"world",
"world"
]
}
genre_labels = data["classes"]
# calculate average probability of all frames for each genre
average_predictions = np.mean(predictions, axis=0)
top = np.argsort(average_predictions)[-num:]
top = top[::-1]
top_genres = [genre_labels[idx] for idx in top]
return list(set(top_genres))
def getTheme(filename,num):
audio = MonoLoader(filename=filename, sampleRate=16000, resampleQuality=4)()
embedding_model = TensorflowPredictEffnetDiscogs(graphFilename="essentia graphfiles/Discogs Effnet BS64 Model.pb",
output="PartitionedCall:1")
embeddings = embedding_model(audio)
model = TensorflowPredict2D(graphFilename="essentia graphfiles/Moodtheme model.pb")
predictions = model(embeddings)
data = {
"classes": [
"action",
"adventure",
"advertising",
"background",
"ballad",
"calm",
"children",
"christmas",
"commercial",
"cool",
"corporate",
"dark",
"deep",
"documentary",
"drama",
"dramatic",
"dream",
"emotional",
"energetic",
"epic",
"fast",
"film",
"fun",
"funny",
"game",
"groovy",
"happy",
"heavy",
"holiday",
"hopeful",
"inspiring",
"love",
"meditative",
"melancholic",
"melodic",
"motivational",
"movie",
"nature",
"party",
"positive",
"powerful",
"relaxing",
"retro",
"romantic",
"sad",
"sexy",
"slow",
"soft",
"soundscape",
"space",
"sport",
"summer",
"trailer",
"travel",
"upbeat",
"uplifting"
]
}
theme_labels = data["classes"]
average_predictions = np.mean(predictions, axis=0)
top = np.argsort(average_predictions)[-num:]
top = top[::-1]
top_themes = [theme_labels[idx] for idx in top]
if 'bass' in top_themes and ('bass' not in filename or 'Bass' not in filename):
top_themes.remove('bass')
return top_themes
from essentia.standard import TensorflowPredictMusiCNN
def getMoodGroup(filename):
# try catch
audio = MonoLoader(filename=filename, sampleRate=16000, resampleQuality=4)()
embedding_model = TensorflowPredictMusiCNN(graphFilename="essentia graphfiles/MusicNN model.pb", output="model/dense/BiasAdd")
embeddings = embedding_model(audio)
model = TensorflowPredict2D(graphFilename="essentia graphfiles/Moods MusicNN Model.pb", input="serving_default_model_Placeholder",
output="PartitionedCall")
try:
predictions = model(embeddings)
except TypeError:
print("Oops! TypeError getting mood group")
return []
data = {
"classes": [
"passionate, rousing, confident, boisterous, rowdy",
"rollicking, cheerful, fun, sweet, amiable/good natured",
"literate, poignant, wistful, bittersweet, autumnal, brooding",
"humorous, silly, campy, quirky, whimsical, witty, wry",
"aggressive, fiery, tense/anxious, intense, volatile, visceral"
]
}
theme_labels = data["classes"]
array_labels = []
for string in theme_labels:
words = []
for word_group in string.split(','):
words += [word.strip() for word in word_group.split('/')]
array_labels.append(words)
theme_labels = array_labels
average_predictions = np.mean(predictions, axis=0)
top = np.argsort(average_predictions)[-1]
return theme_labels[top]
def getPopularity(filename):
audio = MonoLoader(filename=filename, sampleRate=16000, resampleQuality=4)()
embedding_model = TensorflowPredictEffnetDiscogs(graphFilename="essentia graphfiles/Discogs Effnet BS64 Model.pb",
output="PartitionedCall:1")
embeddings = embedding_model(audio)
model = TensorflowPredict2D(graphFilename="essentia graphfiles/Approachability Regression Discogs Effnet.pb", output="model/Identity")
predictions = model(embeddings)
# return the mean of each frame's popularity and penalize a large STD
return np.mean(predictions) - np.std(predictions)
def getEngagement(filename):
audio = MonoLoader(filename=filename, sampleRate=16000, resampleQuality=4)()
embedding_model = TensorflowPredictEffnetDiscogs(graphFilename="essentia graphfiles/Discogs Effnet BS64 Model.pb",
output="PartitionedCall:1")
embeddings = embedding_model(audio)
model = TensorflowPredict2D(graphFilename="essentia graphfiles/Engagement Regression Discogs Effnet Model.pb", output="model/Identity")
predictions = model(embeddings)
# return the mean of each frame's popularity and penalize a large STD
return np.mean(predictions) - np.std(predictions)
def getAggresive(filename):
audio = MonoLoader(filename=filename, sampleRate=16000, resampleQuality=4)()
embedding_model = TensorflowPredictEffnetDiscogs(graphFilename="essentia graphfiles/Discogs Effnet BS64 Model.pb",
output="PartitionedCall:1")
embeddings = embedding_model(audio)
model = TensorflowPredict2D(graphFilename="essentia graphfiles/Aggressive Mood Model.pb", output="model/Softmax")
predictions = model(embeddings)
# return the average confidence that it is aggressive or non
agg = np.mean([i[0] for i in predictions])
non = np.mean([i[1] for i in predictions])
return (agg,non)
def getHappy(filename):
audio = MonoLoader(filename=filename, sampleRate=16000, resampleQuality=4)()
embedding_model = TensorflowPredictEffnetDiscogs(graphFilename="essentia graphfiles/Discogs Effnet BS64 Model.pb",
output="PartitionedCall:1")
embeddings = embedding_model(audio)
model = TensorflowPredict2D(graphFilename="essentia graphfiles/Happy Mood Model.pb", output="model/Softmax")
predictions = model(embeddings)
# return the average confidence that it is aggressive or non
hap = np.mean([i[0] for i in predictions])
non = np.mean([i[1] for i in predictions])
return (hap,non)
def getRelaxed(filename):
audio = MonoLoader(filename=filename, sampleRate=16000, resampleQuality=4)()
embedding_model = TensorflowPredictEffnetDiscogs(graphFilename="essentia graphfiles/Discogs Effnet BS64 Model.pb",
output="PartitionedCall:1")
embeddings = embedding_model(audio)
model = TensorflowPredict2D(graphFilename="essentia graphfiles/Relaxed Mood Model.pb", output="model/Softmax")
predictions = model(embeddings)
# return the average confidence that it is aggressive or non
rel = np.mean([i[0] for i in predictions])
non = np.mean([i[1] for i in predictions])
return (rel,non)
def getSad(filename):
audio = MonoLoader(filename=filename, sampleRate=16000, resampleQuality=4)()
embedding_model = TensorflowPredictEffnetDiscogs(graphFilename="essentia graphfiles/Discogs Effnet BS64 Model.pb",
output="PartitionedCall:1")
embeddings = embedding_model(audio)
model = TensorflowPredict2D(graphFilename="essentia graphfiles/Sad Mood Model.pb", output="model/Softmax")
predictions = model(embeddings)
# return the average confidence that it is aggressive or non
sad = np.mean([i[0] for i in predictions])
non = np.mean([i[1] for i in predictions])
return (sad,non)
#bright/dark
def getTimbre(filename):
audio = MonoLoader(filename=filename, sampleRate=16000, resampleQuality=4)()
embedding_model = TensorflowPredictEffnetDiscogs(graphFilename="essentia graphfiles/Discogs Effnet BS64 Model.pb",
output="PartitionedCall:1")
embeddings = embedding_model(audio)
model = TensorflowPredict2D(graphFilename="essentia graphfiles/Timbre Discogs Model.pb", output="model/Softmax")
predictions = model(embeddings)
bright = np.mean([i[0] for i in predictions])
dark = np.mean([i[1] for i in predictions])
return (bright,dark)
# def getInst(filename,num):
# audio = MonoLoader(filename=filename, sampleRate=16000, resampleQuality=4)()
# embedding_model = TensorflowPredictEffnetDiscogs(graphFilename="essentia graphfiles/Discogs Effnet BS64 Model.pb",
# output="PartitionedCall:1")
# embeddings = embedding_model(audio)
#
# model = TensorflowPredict2D(graphFilename="essentia graphfiles/Instrument model.pb")
# predictions = model(embeddings)
# data = {
# "classes": [
# "reed",
# "guitar",
# "guitar",
# "bass",
# "beat",
# "bell",
# "bongo",
# "brass",
# "cello",
# "clarinet",
# "classicalguitar",
# "computer",
# "doublebass",
# "drummachine",
# "drums",
# "electricguitar",
# "electricpiano",
# "flute",
# "guitar",
# "harmonica",
# "harp",
# "horn",
# "keyboard",
# "oboe",
# "orchestra",
# "organ",
# "pad",
# "percussion",
# "piano",
# "pipeorgan",
# "rhodes",
# "sampler",
# "saxophone",
# "strings",
# "synthesizer",
# "trombone",
# "trumpet",
# "viola",
# "violin",
# "voice"
# ]
# }
# genre_labels = data["classes"]
# average_predictions = np.mean(predictions, axis=0)
# top = np.argsort(average_predictions)[-num:]
# top = top[::-1]
# top_insts = [genre_labels[idx] for idx in top]
# return top_insts