-
Notifications
You must be signed in to change notification settings - Fork 0
/
user_aware_model.py
388 lines (315 loc) · 17.8 KB
/
user_aware_model.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
# General Imports
import os
import numpy as np
import pandas as pd
from time import strftime, localtime
import matplotlib.pyplot as plt
import seaborn as sn
# Deep Learning
import tensorflow as tf
from sklearn.metrics import cohen_kappa_score,f1_score,accuracy_score, precision_score, recall_score, classification_report, roc_auc_score, \
hamming_loss
from scipy.special import softmax
# importing the utility functions defined in utilities.py
from utilities import *
plt.rcParams.update({'font.size': 22})
os.environ["CUDA_VISIBLE_DEVICES"]="2"
# [TODO] Edit directories to match machine
SOURCE_PATH = "/src_code/repo/"
OUTPUT_PATH = "/src_code/repo/experiments_results/"
EXTRA_OUTPUTS = "/src_code/repo/extra_experiment_results"
EXPERIMENTNAME = "user_aware_system"
INPUT_SHAPE = (646, 96, 1)
EMBEDDINGS_DIM = 256
LABELS_LIST = ['car', 'gym', 'happy', 'night', 'relax',
'running', 'sad', 'summer', 'work', 'workout']
# [TODO] Edit directories to match machine
global_labels = pd.read_csv("/src_code/repo/GroundTruth/single_label_all.csv")
train_partial = pd.read_csv("/src_code/repo/GroundTruth/train_set.csv")
POS_WEIGHTS = len(train_partial)/train_partial.sum()[2:]
POS_WEIGHTS = [np.float32(x) for x in POS_WEIGHTS]
BATCH_SIZE = 32
limit_memory_usage(0.3)
# Dataset pipelines
def get_labels_py(song_id,user_id):
labels = global_labels[global_labels.song_id == song_id][global_labels.user_id == user_id]
labels = labels.iloc[:, 2:].values.flatten() # TODO: fix this shift in dataframe columns when read
labels = labels.astype(np.float32)
return labels
def tf_get_labels_py(sample, device="/cpu:0"):
with tf.device(device):
input_args = [sample["song_id"],sample["user_id"]]
labels = tf.py_func(get_labels_py,
input_args,
[tf.float32],
stateful=False)
res = dict(list(sample.items()) + [("binary_label", labels)])
return res
def get_dataset(input_csv, input_shape=INPUT_SHAPE, batch_size=32, shuffle=True,
infinite_generator=True, random_crop=False, cache_dir=os.path.join(OUTPUT_PATH, "tmp/tf_cache/"),
num_parallel_calls=32):
# build dataset from csv file
dataset = dataset_from_csv(input_csv)
# Shuffle data
if shuffle:
dataset = dataset.shuffle(buffer_size=100, seed=1, reshuffle_each_iteration=True)
# compute mel spectrogram
dataset = dataset.map(lambda sample: load_spectrogram_tf(sample), num_parallel_calls=1)
# filter out errors
dataset = dataset.filter(lambda sample: tf.logical_not(sample["error"]))
# map dynamic compression
C = 100
dataset = dataset.map(lambda sample: dict(sample, features=tf.log(1 + C * sample["features"])),
num_parallel_calls=num_parallel_calls)
# Apply permute dimensions
dataset = dataset.map(lambda sample: dict(sample, features=tf.transpose(sample["features"], perm=[1, 2, 0])),
num_parallel_calls=num_parallel_calls)
# Filter by shape (remove badly shaped tensors)
dataset = dataset.filter(lambda sample: check_tensor_shape(sample["features"], input_shape))
# set features shape
dataset = dataset.map(lambda sample: dict(sample,
features=set_tensor_shape(sample["features"], input_shape)))
# if cache_dir:
# os.makedirs(cache_dir, exist_ok=True)
# dataset = dataset.cache(cache_dir)
dataset = dataset.map(lambda sample: tf_get_labels_py(sample), num_parallel_calls=1)
# set output shape
dataset = dataset.map(lambda sample: dict(sample, binary_label=set_tensor_shape(
sample["binary_label"], (len(LABELS_LIST)))))
# load embeddings
dataset = dataset.map(lambda sample: tf_get_embeddings_py(sample), num_parallel_calls=1)
# set weights shape
dataset = dataset.map(lambda sample: dict(sample, user_embeddings=set_tensor_shape(
sample["user_embeddings"], EMBEDDINGS_DIM)))
if infinite_generator:
# Repeat indefinitly
dataset = dataset.repeat(count=-1)
# Make batch
dataset = dataset.batch(batch_size)
# Select only features and annotation
dataset = dataset.map(lambda sample: (
sample["features"], sample["binary_label"], sample["user_embeddings"],sample["song_id"],sample["user_id"]))
return dataset
def get_model(x_input,user_embeddings, current_keep_prob, train_phase):
# Define model architecture
# C4_model
x_norm = tf.layers.batch_normalization(x_input, training=train_phase)
embeds_norm = tf.layers.batch_normalization(user_embeddings, training=train_phase)
with tf.name_scope('CNN_1'):
conv1 = conv_layer_with_relu(x_norm, [3, 3, 1, 32], name="conv_1")
max1 = max_pooling(conv1, shape=[1, 2, 2, 1], name="max_pool_1")
with tf.name_scope('CNN_2'):
conv2 = conv_layer_with_relu(max1, [3, 3, 32, 64], name="conv_2")
max2 = max_pooling(conv2, shape=[1, 2, 2, 1], name="max_pool_2")
with tf.name_scope('CNN_3'):
conv3 = conv_layer_with_relu(max2, [3, 3, 64, 128], name="conv_3")
max3 = max_pooling(conv3, shape=[1, 2, 2, 1], name="max_pool_3")
with tf.name_scope('CNN_4'):
conv4 = conv_layer_with_relu(max3, [3, 3, 128, 256], name="conv_4")
max4 = max_pooling(conv4, shape=[1, 2, 2, 1], name="max_pool_4")
with tf.name_scope('embedding_layer_1'):
embeddings_1 = tf.nn.relu(full_layer(embeds_norm, 128+64))
embeddings_2 = tf.nn.relu(full_layer(embeddings_1, 128))
embeds_1_norm = tf.layers.batch_normalization(embeddings_2, training=train_phase)
with tf.name_scope('flattened_layer_1'):
flattened = tf.reshape(max4, [-1, 41 * 6 * 256])
spect_1 = tf.nn.relu(full_layer(flattened, 512))
spect_2 = tf.nn.relu(full_layer(spect_1, 256))
spect_3 = tf.nn.relu(full_layer(spect_2, 128))
with tf.name_scope('Fully_connected_1'):
#flattened = tf.reshape(max4, [-1, 41 * 6 * 256])
flattened_norm = tf.layers.batch_normalization(spect_3, training=train_phase)
concatenated = tf.concat([flattened_norm,embeds_1_norm],1)
fully1 = tf.nn.sigmoid(full_layer(concatenated, 128))
with tf.name_scope('Fully_connected_2'):
dropped = tf.nn.dropout(fully1, keep_prob=current_keep_prob)
logits = full_layer(dropped, len(LABELS_LIST))
output = tf.nn.softmax(logits)
tf.summary.histogram('outputs', output)
return logits, output
def evaluate_model(test_pred_prob,test_pred, test_classes, saving_path, evaluation_file_path):
"""
Evaluates a given model using accuracy, area under curve and hamming loss
:param model: model to be evaluated
:param spectrograms: the test set spectrograms as an np.array
:param test_classes: the ground truth labels
:return: accuracy, auc_roc, hamming_error
"""
# Accuracy
accuracy = 100 * accuracy_score(test_classes, test_pred)
print("Exact match accuracy is: " + str(accuracy) + "%")
# Area Under the Receiver Operating Characteristic Curve (ROC AUC)
auc_roc = roc_auc_score(test_classes, test_pred_prob)
print("Macro Area Under the Curve (AUC) is: " + str(auc_roc))
with open(evaluation_file_path, "w") as f:
f.write("Exact match accuracy is: " + str(accuracy) + "%\n" + "Area Under the Curve (AUC) is: " + str(auc_roc))
print("saving prediction to disk")
np.savetxt(os.path.join(saving_path, 'predictions.out'), test_pred_prob, delimiter=',')
np.savetxt(os.path.join(saving_path, 'test_ground_truth_classes.txt'), test_classes, delimiter=',')
return accuracy, auc_roc
def main():
print("Current Experiment: " + EXPERIMENTNAME + "\n\n\n")
# Loading datasets
# TODO: fix directories
training_dataset = get_dataset(os.path.join(SOURCE_PATH, "GroundTruth/train_set.csv"))
val_dataset = get_dataset(os.path.join(SOURCE_PATH, "GroundTruth/validation_set.csv"))
# Setting up model
y = tf.placeholder(tf.float32, [None, len(LABELS_LIST)], name="true_labels")
x_input = tf.placeholder(tf.float32, [None, 646, 96, 1], name="input")
embeddings_input = tf.placeholder(tf.float32, [None, EMBEDDINGS_DIM], name="input_embeddings")
current_keep_prob = tf.placeholder(tf.float32, name="dropout_rate")
train_phase = tf.placeholder(tf.bool, name="is_training")
logits, model_output = get_model(x_input, embeddings_input, current_keep_prob, train_phase)
one_hot = tf.one_hot(tf.argmax(model_output, dimension = 1), depth = len(LABELS_LIST))
# Defining loss and metrics
# Adding weights
# your class weights
class_weights = tf.constant(POS_WEIGHTS)
# deduce weights for batch samples based on their true label
weights = tf.reduce_sum(class_weights * y, axis=1)
# compute your (unweighted) softmax cross entropy loss
unweighted_losses = tf.nn.softmax_cross_entropy_with_logits(labels=y,logits=logits)
# apply the weights, relying on broadcasting of the multiplication
weighted_losses = unweighted_losses * weights
# reduce the result to get your final loss
loss = tf.reduce_mean(weighted_losses)
# Learning rate decay
global_step = tf.Variable(0, trainable=False)
learning_rate = tf.train.exponential_decay(learning_rate=0.3, global_step=global_step, decay_steps=2000,
decay_rate=0.97, staircase=True)
'''
These following lines are needed for batch normalization to work properly
check https://timodenk.com/blog/tensorflow-batch-normalization/
'''
update_ops = tf.get_collection(tf.GraphKeys.UPDATE_OPS)
with tf.control_dependencies(update_ops):
train_step = tf.train.AdadeltaOptimizer(learning_rate).minimize(loss, global_step=global_step)
correct_prediction = tf.equal(one_hot, y)
accuracy = tf.reduce_mean(tf.cast(correct_prediction, tf.float32))
# Adding tensorboard summaries
tf.summary.scalar('Original cross_entropy', loss)
tf.summary.scalar('Accuracy', accuracy)
# Merge all the summaries
merged = tf.summary.merge_all()
# Setting up dataset iterator
training_iterator = training_dataset.make_one_shot_iterator()
training_next_element = training_iterator.get_next()
validation_iterator = val_dataset.make_one_shot_iterator()
validation_next_element = validation_iterator.get_next()
## Setting up early stopping parameters
# Best validation accuracy seen so far.
best_validation_loss = 10e6 # Just some large number before storing the first validation loss
# Iteration-number for last improvement to validation accuracy.
last_improvement = 0
# Stop optimization if no improvement found in this many iterations.
min_epochs_for_early_stop = 20
# Training paramaeters
TRAINING_STEPS = 3125
VALIDATION_STEPS = 1100
NUM_EPOCHS = 100
# Setting up saving directory
experiment_name = strftime("%Y-%m-%d_%H-%M-%S", localtime())
exp_dir = os.path.join(OUTPUT_PATH, EXPERIMENTNAME, experiment_name)
extra_exp_dir = os.path.join(EXTRA_OUTPUTS, EXPERIMENTNAME, experiment_name)
os.makedirs(exp_dir, exist_ok=True)
# Add ops to save and restore all the variables.
saver = tf.train.Saver()
epoch_losses_history, epoch_accurcies_history, val_losses_history, val_accuracies_history = [], [], [], []
with tf.Session() as sess:
# Write summaries to LOG_DIR -- used by TensorBoard
train_writer = tf.summary.FileWriter(extra_exp_dir + '/tensorboard/train', graph=tf.get_default_graph())
test_writer = tf.summary.FileWriter(extra_exp_dir + '/tensorboard/test', graph=tf.get_default_graph())
print("Execute the following in a terminal:\n" + "tensorboard --logdir=" + extra_exp_dir)
sess.run(tf.global_variables_initializer())
for epoch in range(NUM_EPOCHS):
batch_loss, batch_accuracy = np.zeros([TRAINING_STEPS, 1]), np.zeros([TRAINING_STEPS, 1])
val_accuracies, val_losses = np.zeros([VALIDATION_STEPS, 1]), np.zeros([VALIDATION_STEPS, 1])
for batch_counter in range(TRAINING_STEPS):
batch = sess.run(training_next_element)
batch_labels = np.squeeze(batch[1])
batch_embeddings = np.squeeze(batch[2])
# TODO: double check embeddings position, is it batch[2]?
summary, batch_loss[batch_counter], batch_accuracy[batch_counter], _ = sess.run(
[merged, loss, accuracy, train_step],
feed_dict={current_keep_prob: 0.3, x_input: batch[0], y: batch_labels,
embeddings_input: batch_embeddings,
train_phase: True})
print("Epoch #{}".format(epoch + 1), "Loss: {:.4f}".format(np.mean(batch_loss)),
"accuracy: {:.4f}".format(np.mean(batch_accuracy)))
epoch_losses_history.append(np.mean(batch_loss));
epoch_accurcies_history.append(np.mean(batch_accuracy))
# Add to summaries
train_writer.add_summary(summary, epoch)
for validation_batch in range(VALIDATION_STEPS):
val_batch = sess.run(validation_next_element)
summary, val_losses[validation_batch], val_accuracies[validation_batch], = sess.run(
[merged, loss, accuracy],
feed_dict={
x_input: val_batch[0],
y: np.squeeze(val_batch[1]),
embeddings_input: np.squeeze(val_batch[2]),
current_keep_prob: 1.0,
train_phase: False})
print("validation Loss : {:.4f}".format(np.mean(val_losses)),
"validation accuracy: {:.4f}".format(np.mean(val_accuracies)))
val_losses_history.append(np.mean(val_losses));
val_accuracies_history.append(np.mean(val_accuracies))
test_writer.add_summary(summary, epoch)
# If validation loss is an improvement over best-known.
if np.mean(val_losses) < best_validation_loss:
# Update the best-known validation accuracy.
best_validation_loss = np.mean(val_losses)
# Set the iteration for the last improvement to current.
last_improvement = epoch
# Save all variables of the TensorFlow graph to file.
save_path = saver.save(sess, os.path.join(extra_exp_dir, "best_validation.ckpt"))
# print("Model with best validation saved in path: %s" % save_path)
# If no improvement found in the required number of iterations.
if epoch - last_improvement > min_epochs_for_early_stop:
print("No improvement found in a last 10 epochs, stopping optimization.")
# Break out from the for-loop.
break
save_path = saver.save(sess, os.path.join(extra_exp_dir, "last_epoch.ckpt"))
print("Last iteration model saved in path: %s" % save_path)
# Loading model with best validation
saver.restore(sess, os.path.join(extra_exp_dir, "best_validation.ckpt"))
print("Model with best validation restored before testing.")
test_labels = pd.read_csv(os.path.join(SOURCE_PATH, "GroundTruth/test_set.csv"))
test_dataset = get_dataset(os.path.join(SOURCE_PATH, "GroundTruth/test_set.csv"), shuffle = False)
test_classes = np.zeros_like(test_labels.iloc[:, 2:].values, dtype=float)
# test_images, test_classes = load_test_set_raw(test_split)
TEST_NUM_STEPS = int(np.floor((len(test_classes) / 32)))
# split_size = int(len(test_classes) / TEST_NUM_STEPS)
test_pred_prob = np.zeros_like(test_classes, dtype=float)
test_one_hot = np.zeros_like(test_classes, dtype=float)
test_iterator = test_dataset.make_one_shot_iterator()
test_next_element = test_iterator.get_next()
test_song_ids = np.zeros([test_classes.shape[0],1])
test_user_ids = np.zeros([test_classes.shape[0],1])
for test_batch_counter in range(TEST_NUM_STEPS):
start_idx = (test_batch_counter * BATCH_SIZE)
end_idx = (test_batch_counter * BATCH_SIZE) + BATCH_SIZE
test_batch = sess.run(test_next_element)
test_batch_images = test_batch[0]
test_batch_labels = np.squeeze(test_batch[1])
test_embeddings = np.squeeze(test_batch[2])
test_song_ids[start_idx:end_idx] = test_batch[3].reshape([-1, 1])
test_user_ids[start_idx:end_idx] = test_batch[4].reshape([-1, 1])
test_classes[start_idx:end_idx, :] = test_batch_labels
test_pred_prob[start_idx:end_idx, :],test_one_hot[start_idx:end_idx, :] = sess.run([model_output, one_hot],
feed_dict={x_input: test_batch_images,
embeddings_input: test_embeddings,
current_keep_prob: 1.0,
train_phase: False})
np.savetxt(os.path.join(exp_dir, 'tracks_ids.txt'), test_song_ids, delimiter=',')
np.savetxt(os.path.join(exp_dir, 'user_ids.txt'), test_user_ids, delimiter=',')
accuracy_out, auc_roc = evaluate_model(test_pred_prob,test_one_hot, test_classes,
saving_path=exp_dir,
evaluation_file_path= \
os.path.join(exp_dir, "evaluation_results.txt"))
results = create_analysis_report(test_pred_prob,test_one_hot, test_classes, exp_dir, LABELS_LIST)
# Plot and save losses
plot_loss_acuracy(epoch_losses_history, epoch_accurcies_history, val_losses_history, val_accuracies_history,
exp_dir)
if __name__ == "__main__":
main()