-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathexperiment.py
More file actions
360 lines (297 loc) · 20.8 KB
/
experiment.py
File metadata and controls
360 lines (297 loc) · 20.8 KB
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
from __future__ import absolute_import, division, print_function, unicode_literals
from builtins import ascii, bytes, chr, dict, filter, hex, input, int, map, next, oct, open, pow, range, round, str, super, zip
import tensorflow as tf
import json
import numpy as np
import scipy.io
import sys, os, shutil
import random
import timeit
import collections
import heapq
max_epochs = 100
num_runs = 3
minibatch_size = 50
results_data_dir = 'results'
mscoco_dir = '.../coco-caption-master' #directory to mscoco evaluation code downloaded from https://github.com/tylin/coco-caption
def get_raw_input_data_dir(dataset):
return '.../'+dataset #directory to karpathy flickr8k or flickr30k dataset downloaded from http://cs.stanford.edu/people/karpathy/deepimagesent/
sys.path.append(mscoco_dir)
from pycocotools.coco import COCO
from pycocoevalcap.eval import COCOEvalCap
##################################################################################################################################
def generate_sequence_beamsearch(predictions_function, beam_width=3, clip_len=20):
prev_beam = Beam(beam_width)
prev_beam.add(np.array(1.0, 'float64'), False, [ edge_index ])
while True:
curr_beam = Beam(beam_width)
#Add complete sentences that do not yet have the best probability to the current beam, the rest prepare to add more words to them.
prefix_batch = list()
prob_batch = list()
for (prefix_prob, complete, prefix) in prev_beam:
if complete == True:
curr_beam.add(prefix_prob, True, prefix)
else:
prefix_batch.append(prefix)
prob_batch.append(prefix_prob)
#Get probability of each possible next word for each incomplete prefix.
indexes_distributions = predictions_function(prefix_batch)
#Add next words
for (prefix_prob, prefix, indexes_distribution) in zip(prob_batch, prefix_batch, indexes_distributions):
for (next_index, next_prob) in enumerate(indexes_distribution):
if next_index == unknown_index: #skip unknown tokens
pass
elif next_index == edge_index: #if next word is the end token then mark prefix as complete and leave out the end token
curr_beam.add(prefix_prob*next_prob, True, prefix)
else: #if next word is a non-end token then mark prefix as incomplete
curr_beam.add(prefix_prob*next_prob, False, prefix+[next_index])
(best_prob, best_complete, best_prefix) = max(curr_beam)
if best_complete == True or len(best_prefix)-1 == clip_len: #if the length of the most probable prefix exceeds the clip length (ignoring the start token) then return it as is
return ' '.join(index_to_token[index] for index in best_prefix[1:]) #return best sentence without the start token
prev_beam = curr_beam
class Beam(object):
#For comparison of prefixes, the tuple (prefix_probability, complete_sentence) is used.
#This is so that if two prefixes have equal probabilities then a complete sentence is preferred over an incomplete one since (0.5, False) < (0.5, True)
#################################################################
def __init__(self, beam_width):
self.heap = list()
self.beam_width = beam_width
#################################################################
def add(self, prob, complete, prefix):
heapq.heappush(self.heap, (prob, complete, prefix))
if len(self.heap) > self.beam_width:
heapq.heappop(self.heap)
#################################################################
def __iter__(self):
return iter(self.heap)
with open(results_data_dir+'/results.txt', 'w', encoding='utf-8') as f:
print('dataset', 'min_token_freq', 'vocab_size', 'vocab_used', 'layer_size', 'num_params', 'method', 'run', 'CIDEr', 'Bleu_1', 'Bleu_2', 'Bleu_3', 'Bleu_4', 'METEOR', 'ROUGE_L', sep='\t', file=f)
################################################################
for dataset in [ 'flickr8k', 'flickr30k' ]:
raw_input_data_dir = get_raw_input_data_dir(dataset)
################################################################
print('Loading raw data...')
print(dataset)
with open(raw_input_data_dir+'/dataset.json', 'r', encoding='utf-8') as captions_f:
captions_data = json.load(captions_f)['images']
features = scipy.io.loadmat(raw_input_data_dir+'/vgg_feats.mat')['feats'].T #image features matrix are transposed
raw_dataset = {
'train': { 'filenames': list(), 'images': list(), 'captions': list() },
'val': { 'filenames': list(), 'images': list(), 'captions': list() },
'test': { 'filenames': list(), 'images': list(), 'captions': list() },
}
for (image_id, (caption_data, image)) in enumerate(zip(captions_data, features)):
assert caption_data['sentences'][0]['imgid'] == image_id
split = caption_data['split']
if split == 'restval':
continue
filename = caption_data['filename']
caption_group = [ caption['tokens'] for caption in caption_data['sentences'] ]
image = image/np.linalg.norm(image)
raw_dataset[split]['filenames'].append(filename)
raw_dataset[split]['images'].append(image)
raw_dataset[split]['captions'].append(caption_group)
with open(mscoco_dir+'/annotations/captions.json', 'w', encoding='utf-8') as f:
print(str(json.dumps({
'info': {
'description': None,
'url': None,
'version': None,
'year': None,
'contributor': None,
'date_created': None,
},
'images': [
{
'license': None,
'url': None,
'file_name': None,
'id': image_id,
'width': None,
'date_captured': None,
'height': None
}
for image_id in range(len(raw_dataset['test']['images']))
],
'licenses': [
],
'type': 'captions',
'annotations': [
{
'image_id': image_id,
'id': caption_id,
'caption': ' '.join(caption)
}
for (caption_id, (image_id, caption)) in enumerate((image_id, caption) for (image_id, caption_group) in enumerate(raw_dataset['test']['captions']) for caption in caption_group)
]
})), file=f)
for min_token_freq in [ 3, 4, 5 ]:
all_tokens = (token for caption_group in raw_dataset['train']['captions'] for caption in caption_group for token in caption)
token_freqs = collections.Counter(all_tokens)
vocab = sorted(token_freqs.keys(), key=lambda token:(-token_freqs[token], token))
while token_freqs[vocab[-1]] < min_token_freq:
vocab.pop()
vocab_size = len(vocab) + 2 # + edge and unknown tokens
print('vocab:', vocab_size)
token_to_index = { token: i+2 for (i, token) in enumerate(vocab) }
index_to_token = { i+2: token for (i, token) in enumerate(vocab) }
edge_index = 0
unknown_index = 1
def parse(data):
indexes = list()
lens = list()
images = list()
for (caption_group, img) in zip(data['captions'], data['images']):
for caption in caption_group:
indexes_ = [ token_to_index.get(token, unknown_index) for token in caption ]
indexes.append(indexes_)
lens.append(len(indexes_)+1) #add 1 due to edge token
images.append(img)
maxlen = max(lens)
in_mat = np.zeros((len(indexes), maxlen), np.int32)
out_mat = np.zeros((len(indexes), maxlen), np.int32)
for (row, indexes_) in enumerate(indexes):
in_mat [row,:len(indexes_)+1] = [edge_index]+indexes_
out_mat[row,:len(indexes_)+1] = indexes_+[edge_index]
return (in_mat, out_mat, np.array(lens, np.int32), np.array(images))
(train_captions_in, train_captions_out, train_captions_len, train_images) = parse(raw_dataset['train'])
(val_captions_in, val_captions_out, val_captions_len, val_images) = parse(raw_dataset['val'])
(test_captions_in, test_captions_out, test_captions_len, test_images) = parse(raw_dataset['test'])
################################################################
print('Training...')
for layer_size in [ 128, 256, 512 ]:
for method in [ 'merge', 'inject' ]:
for run in range(1, num_runs+1):
model_name = '_'.join([ str(x) for x in [ method, dataset, min_token_freq, layer_size, run ] ])
os.makedirs(results_data_dir+'/'+model_name)
print()
print('-'*100)
print(dataset, min_token_freq, layer_size, method, run)
print()
tf.reset_default_graph()
#Sequence of token indexes generated thus far included start token (or full correct sequence during training).
seq_in = tf.placeholder(tf.int32, shape=[None, None], name='seq_in') #[seq, token index]
#Length of sequence in seq_in.
seq_len = tf.placeholder(tf.int32, shape=[None], name='seq_len') #[seq len]
#Images
image = tf.placeholder(tf.float32, shape=[None, 4096], name='image') #[seq, image feature]
#Correct sequence to generate during training without start token but with end token
seq_target = tf.placeholder(tf.int32, shape=[None, None], name='seq_target') #[seq, token index]
#Number of sequences to process at once.
batch_size = tf.shape(seq_in)[0]
#Number of tokens in generated sequence.
num_steps = tf.shape(seq_in)[1]
with tf.variable_scope('image'):
#Project image vector into a smaller vector.
W = tf.get_variable('W', [ 4096, layer_size ], tf.float32, tf.contrib.layers.xavier_initializer())
b = tf.get_variable('b', [ layer_size ], tf.float32, tf.zeros_initializer())
post_image = tf.matmul(image, W) + b
with tf.variable_scope('prefix_encoder'):
#Encode each generated sequence prefix into a vector.
#Embedding matrix for token vocabulary.
embeddings = tf.get_variable('embeddings', [ vocab_size, layer_size ], tf.float32, tf.contrib.layers.xavier_initializer()) #[vocabulary token, token feature]
#3tensor of tokens in sequences replaced with their corresponding embedding.
embedded = tf.nn.embedding_lookup(embeddings, seq_in) #[seq, token, token feature]
if method == 'inject':
rnn_input = tf.concat([ embedded, tf.tile(tf.expand_dims(post_image, 1), [1,num_steps,1]) ], axis=2)
else:
rnn_input = embedded
#Use an LSTM to encode the generated prefix.
init_state = tf.contrib.rnn.LSTMStateTuple(c=tf.zeros([ batch_size, layer_size ]), h=tf.zeros([ batch_size, layer_size ]))
cell = tf.contrib.rnn.BasicLSTMCell(layer_size)
(prefix_vectors, _) = tf.nn.dynamic_rnn(cell, rnn_input, sequence_length=seq_len, initial_state=init_state) #[seq, prefix position, prefix feature]
#Mask of which positions in the matrix of sequences are actual labels as opposed to padding.
token_mask = tf.cast(tf.sequence_mask(seq_len, num_steps), tf.float32) #[seq, token flag]
with tf.variable_scope('softmax'):
#Output a probability distribution over the token vocabulary (including the end token)
if method == 'merge':
softmax_input = tf.concat([ prefix_vectors, tf.tile(tf.expand_dims(post_image, 1), [1,num_steps,1]) ], axis=2)
softmax_input_size = layer_size + layer_size #state + image
else:
softmax_input = prefix_vectors
softmax_input_size = layer_size
W = tf.get_variable('W', [ softmax_input_size, vocab_size ], tf.float32, tf.contrib.layers.xavier_initializer())
b = tf.get_variable('b', [ vocab_size ], tf.float32, tf.zeros_initializer())
logits = tf.reshape(tf.matmul(tf.reshape(softmax_input, [ -1, softmax_input_size ]), W) + b, [ batch_size, num_steps, vocab_size ])
predictions = tf.nn.softmax(logits) #[seq, prefix position, token probability]
last_prediction = predictions[:,-1]
losses = tf.nn.sparse_softmax_cross_entropy_with_logits(labels=seq_target, logits=logits) * token_mask
total_loss = tf.reduce_sum(losses)
train_step = tf.train.AdamOptimizer().minimize(total_loss)
sess = tf.Session()
sess.run(tf.global_variables_initializer())
saver = tf.train.Saver()
num_params = 0
for v in sess.graph.get_collection('trainable_variables'):
num_params += np.prod(v.get_shape()).value
print('epoch', 'val loss', 'duration', sep='\t')
run_start = start = timeit.default_timer()
validation_loss = 0
for i in range(len(val_images)//minibatch_size):
minibatch_validation_loss = sess.run(total_loss, feed_dict={
seq_in: val_captions_in [i*minibatch_size:(i+1)*minibatch_size],
seq_len: val_captions_len[i*minibatch_size:(i+1)*minibatch_size],
seq_target: val_captions_out[i*minibatch_size:(i+1)*minibatch_size],
image: val_images[i*minibatch_size:(i+1)*minibatch_size]
})
validation_loss += minibatch_validation_loss
print(0, round(validation_loss, 3), round(timeit.default_timer() - start), sep='\t')
last_validation_loss = validation_loss
trainingset_indexes = list(range(len(train_images)))
for epoch in range(1, max_epochs+1):
random.shuffle(trainingset_indexes)
start = timeit.default_timer()
for i in range(len(trainingset_indexes)//minibatch_size):
minibatch_indexes = trainingset_indexes[i*minibatch_size:(i+1)*minibatch_size]
sess.run(train_step, feed_dict={
seq_in: train_captions_in [minibatch_indexes],
seq_len: train_captions_len[minibatch_indexes],
seq_target: train_captions_out[minibatch_indexes],
image: train_images[minibatch_indexes]
})
validation_loss = 0
for i in range(len(val_images)//minibatch_size):
minibatch_validation_loss = sess.run(total_loss, feed_dict={
seq_in: val_captions_in [i*minibatch_size:(i+1)*minibatch_size],
seq_len: val_captions_len[i*minibatch_size:(i+1)*minibatch_size],
seq_target: val_captions_out[i*minibatch_size:(i+1)*minibatch_size],
image: val_images[i*minibatch_size:(i+1)*minibatch_size]
})
validation_loss += minibatch_validation_loss
print(epoch, round(validation_loss, 3), round(timeit.default_timer() - start), sep='\t')
if validation_loss > last_validation_loss:
break
last_validation_loss = validation_loss
saver.save(sess, results_data_dir+'/'+model_name+'/model')
saver.restore(sess, tf.train.latest_checkpoint(results_data_dir+'/'+model_name))
print()
print('evaluating...')
print()
captions = list()
for (i, image_input) in enumerate(raw_dataset['test']['images']):
caption = generate_sequence_beamsearch(lambda prefixes:sess.run(last_prediction, feed_dict={
seq_in: prefixes,
seq_len: [ len(p) for p in prefixes ],
image: image_input.reshape([1,-1]).repeat(len(prefixes), axis=0)
}))
captions.append(caption)
vocab_used = len({ word for caption in captions for word in caption.split(' ') })
with open(results_data_dir+'/'+model_name+'/generated_captions.json', 'w', encoding='utf-8') as f:
print(str(json.dumps([
{
'image_id': image_id,
'caption': caption
}
for (image_id, caption) in enumerate(captions)
])), file=f)
shutil.copyfile(results_data_dir+'/'+model_name+'/generated_captions.json', mscoco_dir+'/results/generated_captions.json')
coco = COCO(mscoco_dir+'/annotations/captions.json')
cocoRes = coco.loadRes(mscoco_dir+'/results/generated_captions.json')
cocoEval = COCOEvalCap(coco, cocoRes)
cocoEval.evaluate()
gen_result = [ cocoEval.eval[metric] for metric in [ 'CIDEr', 'Bleu_1', 'Bleu_2', 'Bleu_3', 'Bleu_4', 'METEOR', 'ROUGE_L' ] ]
with open(results_data_dir+'/results.txt', 'a', encoding='utf-8') as f:
print(*[ str(x) for x in [dataset, min_token_freq, vocab_size, vocab_used, layer_size, num_params, method, run]+gen_result ], sep='\t', file=f)
print()
print('Duration:', round(timeit.default_timer() - run_start), 's')
print()