forked from kyunghyuncho/DefGen2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefgen_bs.py
805 lines (642 loc) · 29.3 KB
/
defgen_bs.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
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
'''
Generate definitions from word embeddings, and maybe vice versa
'''
import theano
import theano.tensor as tensor
from theano.sandbox.rng_mrg import MRG_RandomStreams as RandomStreams
import cPickle as pkl
import numpy
import copy
import os
from scipy import optimize, stats
from collections import OrderedDict
from sklearn.cross_validation import KFold
from wn_w2v_defs import load_data, prepare_data
# useful functions
def _softmax(x):
e_x = tensor.exp(x - x.max(axis=1, keepdims=True))
out = e_x / e_x.sum(axis=1, keepdims=True)
return out
# push parameters to Theano shared variables
def zipp(params, tparams):
for kk, vv in params.iteritems():
tparams[kk].set_value(vv)
# pull parameters from Theano shared variables
def unzip(zipped):
new_params = OrderedDict()
for kk, vv in zipped.iteritems():
new_params[kk] = vv.get_value()
return new_params
# get the list of parameters: tparams must be OrderedDict
def itemlist(tparams):
return [vv for kk, vv in tparams.iteritems()]
# dropout - just in case
def dropout_layer(state_before, use_noise, trng):
proj = tensor.switch(use_noise,
state_before * trng.binomial(state_before.shape, p=0.5, n=1, dtype=state_before.dtype),
state_before * 0.5)
return proj
# make prefix-appended name for referring to functions later
def _p(pp, name):
return '%s_%s'%(pp, name)
# init all parameters
def init_params(options):
params = OrderedDict()
# embedding
params['Wemb'] = norm_weight(options['n_words'], options['dim_word'])
# non-linear projection of context
params = get_layer('ff')[0](options, params, prefix='ff_ctx', nin=options['ctx_dim'], nout=options['ctx_dim'])
# init_state, init_cell
params = get_layer('ff')[0](options, params, prefix='ff_state', nin=options['ctx_dim'], nout=options['dim'])
params = get_layer('ff')[0](options, params, prefix='ff_memory', nin=options['ctx_dim'], nout=options['dim'])
# decoder: LSTM
params = get_layer('lstm_cond')[0](options, params, prefix='decoder',
nin=options['dim_word'], dim=options['dim'],
dimctx=options['ctx_dim'])
# readout
# from LSTM
params = get_layer('ff')[0](options, params, prefix='ff_logit_lstm', nin=options['dim'], nout=options['dim_word'])
# from context
params = get_layer('ff')[0](options, params, prefix='ff_logit_ctx', nin=options['ctx_dim'], nout=options['dim_word'])
# from previous word
params = get_layer('ff')[0](options, params, prefix='ff_logit_prev', nin=options['dim_word'], nout=options['dim_word'])
# to output
params = get_layer('ff')[0](options, params, prefix='ff_logit', nin=options['dim_word'], nout=options['n_words'])
return params
# initialize Theano shared variables according to the initial parameters
def init_tparams(params):
tparams = OrderedDict()
for kk, pp in params.iteritems():
tparams[kk] = theano.shared(params[kk], name=kk)
return tparams
# load parameters
def load_params(path, params):
pp = numpy.load(path)
for kk, vv in params.iteritems():
if kk not in pp:
raise Warning('%s is not in the archive'%kk)
params[kk] = pp[kk]
return params
# layers: 'name': ('parameter initializer', 'feedforward')
layers = {'ff': ('param_init_fflayer', 'fflayer'),
'lstm': ('param_init_lstm', 'lstm_layer'),
'lstm_cond': ('param_init_lstm_cond', 'lstm_cond_layer'),
}
def get_layer(name):
fns = layers[name]
return (eval(fns[0]), eval(fns[1]))
# some other useful functions
# orthonormal small random initial weights (good for RNN)
def ortho_weight(ndim):
W = numpy.random.randn(ndim, ndim)
u, s, v = numpy.linalg.svd(W)
return u.astype('float32')
# only for square mapping situations
def norm_weight(nin,nout=None, scale=0.01):
if nout == None:
nout = nin
if nout == nin:
W = ortho_weight(nin)
else:
W = scale * numpy.random.randn(nin, nout)
return W.astype('float32')
# two activation types
def tanh(x):
return tensor.tanh(x)
def linear(x):
return x
# feedforward layer: affine transformation + point-wise nonlinearity
def param_init_fflayer(options, params, prefix='ff', nin=None, nout=None):
if nin == None:
nin = options['dim_proj']
if nout == None:
nout = options['dim_proj']
params[_p(prefix,'W')] = norm_weight(nin, nout, scale=0.01)
params[_p(prefix,'b')] = numpy.zeros((nout,)).astype('float32')
return params
def fflayer(tparams, state_below, options, prefix='rconv', activ='lambda x: tensor.tanh(x)', **kwargs):
return eval(activ)(tensor.dot(state_below, tparams[_p(prefix,'W')])+tparams[_p(prefix,'b')])
# LSTM layer
def param_init_lstm(options, params, prefix='lstm', nin=None, dim=None):
if nin == None:
nin = options['dim_proj']
if dim == None:
dim = options['dim_proj']
W = numpy.concatenate([norm_weight(nin,dim),
norm_weight(nin,dim),
norm_weight(nin,dim),
norm_weight(nin,dim)], axis=1)
params[_p(prefix,'W')] = W
U = numpy.concatenate([ortho_weight(dim),
ortho_weight(dim),
ortho_weight(dim),
ortho_weight(dim)], axis=1)
params[_p(prefix,'U')] = U
params[_p(prefix,'b')] = numpy.zeros((4 * dim,)).astype('float32')
return params
def lstm_layer(tparams, state_below, options, prefix='lstm', mask=None, **kwargs):
nsteps = state_below.shape[0]
if state_below.ndim == 3:
n_samples = state_below.shape[1]
else:
n_samples = 1
dim = tparams[_p(prefix,'U')].shape[0]
if mask == None:
mask = tensor.alloc(1., state_below.shape[0], 1)
def _slice(_x, n, dim):
if _x.ndim == 3:
return _x[:, :, n*dim:(n+1)*dim]
return _x[:, n*dim:(n+1)*dim]
def _step(m_, x_, h_, c_):
preact = tensor.dot(h_, tparams[_p(prefix, 'U')])
preact += x_
preact += tparams[_p(prefix, 'b')]
i = tensor.nnet.sigmoid(_slice(preact, 0, dim))
f = tensor.nnet.sigmoid(_slice(preact, 1, dim))
o = tensor.nnet.sigmoid(_slice(preact, 2, dim))
c = _slice(preact, 3, dim)
c = f * c_ + i * c
c = m_[:,None] * c + (1. - m_)[:,None] * c_
h = o * tensor.tanh(c)
h = m_[:,None] * h + (1. - m_)[:,None] * h_
return h, c
state_below = tensor.dot(state_below, tparams[_p(prefix, 'W')]) + tparams[_p(prefix, 'b')]
rval, updates = theano.scan(_step,
sequences=[mask, state_below],
outputs_info = [tensor.alloc(0., n_samples, dim),
tensor.alloc(0., n_samples, dim)],
name=_p(prefix, '_layers'),
n_steps=nsteps)
return rval
# LSTM layer conditioned on some external context (as per MT generator)
# function to initialise the parameters in this layer
def param_init_lstm_cond(options, params, prefix='lstm_cond', nin=None, dim=None, dimctx=None):
if nin == None:
nin = options['dim']
if dim == None:
dim = options['dim']
if dimctx == None:
dimctx = options['dim']
# input to LSTM
W = numpy.concatenate([norm_weight(nin,dim),
norm_weight(nin,dim),
norm_weight(nin,dim),
norm_weight(nin,dim)], axis=1)
params[_p(prefix,'W')] = W
# LSTM to LSTM
U = numpy.concatenate([ortho_weight(dim),
ortho_weight(dim),
ortho_weight(dim),
ortho_weight(dim)], axis=1)
params[_p(prefix,'U')] = U
# bias to LSTM
params[_p(prefix,'b')] = numpy.zeros((4 * dim,)).astype('float32')
# context to LSTM
Wc = norm_weight(dimctx,dim*4)
params[_p(prefix,'Wc')] = Wc
params[_p(prefix,'bc')] = numpy.zeros((4 * dim,)).astype('float32')
return params
# function to get the computation graph (fn) of the layer
def lstm_cond_layer(tparams, state_below, options, prefix='lstm',
mask=None, context=None, one_step=False,
init_memory=None, init_state=None,
**kwargs):
assert context, 'Context must be provided'
if one_step:
assert init_memory, 'previous memory must be provided'
assert init_state, 'previous state must be provided'
nsteps = state_below.shape[0]
if state_below.ndim == 3:
n_samples = state_below.shape[1]
else:
n_samples = 1
# mask
if mask == None:
mask = tensor.alloc(1., state_below.shape[0], 1)
dim = tparams[_p(prefix, 'U')].shape[0]
# initial/previous state
if init_state == None:
init_state = tensor.alloc(0., n_samples, dim)
# initial/previous memory
if init_memory == None:
init_memory = tensor.alloc(0., n_samples, dim)
# projected context
pctx_ = tensor.tanh(tensor.dot(context, tparams[_p(prefix,'Wc')]) + tparams[_p(prefix,'bc')]) # added non-linearity here
# projected x
state_below = tensor.dot(state_below, tparams[_p(prefix, 'W')]) + tparams[_p(prefix, 'b')]
def _slice(_x, n, dim):
if _x.ndim == 3:
return _x[:, :, n*dim:(n+1)*dim]
return _x[:, n*dim:(n+1)*dim]
def _step(m_, x_, h_, c_, pctx_):
preact = tensor.dot(h_, tparams[_p(prefix, 'U')])
preact += x_
preact += pctx_
i = tensor.nnet.sigmoid(_slice(preact, 0, dim))
f = tensor.nnet.sigmoid(_slice(preact, 1, dim))
o = tensor.nnet.sigmoid(_slice(preact, 2, dim))
c = tensor.tanh(_slice(preact, 3, dim))
c = f * c_ + i * c
c = m_[:,None] * c + (1. - m_)[:,None] * c_
h = o * tensor.tanh(c)
h = m_[:,None] * h + (1. - m_)[:,None] * h_
return h, c
if one_step:
rval = _step(mask, state_below, init_state, init_memory, pctx_)
else:
rval, updates = theano.scan(_step,
sequences=[mask, state_below],
outputs_info = [init_state, init_memory],
non_sequences=[pctx_],
name=_p(prefix, '_layers'),
n_steps=nsteps)
return rval
# build a training model
def build_model(tparams, options, test=True):
trng = RandomStreams(1234)
use_noise = theano.shared(numpy.float32(0.))
# description string: #words x #samples
x = tensor.matrix('x', dtype='int64')
mask = tensor.matrix('mask', dtype='float32')
# context: #samples x dim
ctx = tensor.matrix('ctx', dtype='float32')
proj_ctx = get_layer('ff')[1](tparams, ctx, options, prefix='ff_ctx', activ='tanh')
n_timesteps = x.shape[0]
n_samples = x.shape[1]
# word embedding
emb = tparams['Wemb'][x.flatten()].reshape([n_timesteps, n_samples, options['dim_word']])
emb_shifted = tensor.zeros_like(emb)
emb_shifted = tensor.set_subtensor(emb_shifted[1:], emb[:-1])
emb = emb_shifted
# initial state/cell
init_state = get_layer('ff')[1](tparams, proj_ctx, options, prefix='ff_state', activ='tanh')
init_memory = get_layer('ff')[1](tparams, proj_ctx, options, prefix='ff_memory', activ='tanh')
# decoder
proj = get_layer('lstm_cond')[1](tparams, emb, options,
prefix='decoder',
mask=mask, context=proj_ctx,
one_step=False,
init_state=init_state,
init_memory=init_memory)
proj_h = proj[0]
# compute word probabilities
logit_lstm = get_layer('ff')[1](tparams, proj_h, options, prefix='ff_logit_lstm', activ='linear')
logit_ctx = get_layer('ff')[1](tparams, proj_ctx, options, prefix='ff_logit_ctx', activ='linear')
logit_prev = get_layer('ff')[1](tparams, emb, options, prefix='ff_logit_prev', activ='linear')
logit = tensor.tanh(logit_lstm + logit_ctx[None,:,:] + logit_prev)
logit = get_layer('ff')[1](tparams, logit, options, prefix='ff_logit', activ='linear')
logit_shp = logit.shape
probs = _softmax(logit.reshape([logit_shp[0]*logit_shp[1], logit_shp[2]]))
# cost
x_flat = x.flatten()
if test:
cost = -tensor.log(probs[tensor.arange(x_flat.shape[0]), x_flat])
else:
cost = -tensor.log(probs[tensor.arange(x_flat.shape[0]), x_flat]+1e-8)
cost = cost.reshape([x.shape[0], x.shape[1]])
cost = (cost * mask).sum(0)
#cost = cost.mean()
return trng, use_noise, x, mask, ctx, cost
# build a sampler
def build_sampler(tparams, options, trng):
# context: 1 x dim
ctx = tensor.matrix('ctx_sampler', dtype='float32')
proj_ctx = get_layer('ff')[1](tparams, ctx, options, prefix='ff_ctx', activ='tanh')
# initial state/cell
init_state = get_layer('ff')[1](tparams, proj_ctx, options, prefix='ff_state', activ='tanh')
init_memory = get_layer('ff')[1](tparams, proj_ctx, options, prefix='ff_memory', activ='tanh')
print 'Building f_init...',
f_init = theano.function([ctx], [init_state, init_memory], name='f_init')
print 'Done'
# x: 1 x 1
x = tensor.vector('x_sampler', dtype='int64')
init_state = tensor.matrix('init_state', dtype='float32')
init_memory = tensor.matrix('init_memory', dtype='float32')
# if it's the first word, emb should be all zero
emb = tensor.switch(x[:,None] < 0, tensor.alloc(0., x.shape[0], tparams['Wemb'].shape[1]),
tparams['Wemb'][x])
proj = get_layer('lstm_cond')[1](tparams, emb, options,
prefix='decoder',
mask=None, context=proj_ctx,
one_step=True,
init_state=init_state,
init_memory=init_memory)
next_state, next_memory = proj[0], proj[1]
logit_lstm = get_layer('ff')[1](tparams, next_state, options, prefix='ff_logit_lstm', activ='linear')
logit_ctx = get_layer('ff')[1](tparams, proj_ctx, options, prefix='ff_logit_ctx', activ='linear')
logit_prev = get_layer('ff')[1](tparams, emb, options, prefix='ff_logit_prev', activ='linear')
logit = tensor.tanh(logit_lstm + logit_ctx + logit_prev)
logit = get_layer('ff')[1](tparams, logit, options, prefix='ff_logit', activ='linear')
next_probs = _softmax(logit)
next_sample = trng.multinomial(pvals=next_probs).argmax(1)
# next word probability
f_next = theano.function([x, ctx, init_state, init_memory], [next_probs, next_sample, next_state, next_memory], name='f_next')
return f_init, f_next
# generate sample
def gen_sample(tparams, f_init, f_next, ctx, options, trng=None, k=1, maxlen=30):
"""
beam search to find good guess at optimum output sequence quickly
TODO: KHC check this?
"""
if len(ctx.shape) == 1:
ctx = ctx.reshape([1, ctx.shape[0]])
ctx0 = ctx
sample = []
sample_score = []
# sample best k first words
ctx = numpy.tile(ctx0, [k, 1])
next_p, next_w, next_state, next_memory = f_next(next_w, ctx, next_state, next_memory)
init_scores = - numpy.log(next_p[0])
best_k_init = init_scores.argsort()[:k]
live_scores = init_scores[best_k_init]
live_samples = best_k_init[:,None]
next_w = numpy.array([w[-1] for w in live_samples])
for __ in xrange(1, maxlen):
ctx = numpy.tile(ctx0, [live_k, 1])
# now, next_p and next_w , next_state, next_memory contain live_k hypotheses each
next_p, next_w, next_state, next_memory = f_next(next_w, ctx, next_state, next_memory)
cand_scores = live_scores - numpy.log(next_p)
# flatten to compare all words over all hypothesis branches
cand_flat = cand_scores.flatten()
# select live-k indices with the lowest -logprobs
ranks_flat = cand_flat.argsort()[:live_k]
voc_size = next_p.shape[1]
# translate indices in ranks_flat into previous hypothesis that score came from
trans_indices = ranks_flat / voc_size
# and within each hypothesis, to the new word that score corresponds
word_indices = ranks_flat % voc_size
costs = cand_flat[ranks_flat] # the live_k best costs selected in this case
new_samples = [[]]
new_scores = []
new_states = []
new_memories = []
for idx, [ti,wi] in enumerate(zip(trans_indices, word_indices)):
new_samples.append(live_samples[ti]+wi)
new_scores.append(copy.copy(costs[idx]))
new_states.append(copy.copy(next_state[ti]))
new_memories.append(copy.copy(next_memory[ti]))
live_samples = [[]]
live_scores = []
live_states = []
live_memories = []
for idx in xrange(len(new_samples)):
# check if any samples have terminated \
# if so, add sample and score to final output
if new_samples[idx][-1] == 0:
sample.append(new_samples[idx])
sample_score.append(new_scores[idx])
dead_k += 1
live_k -= 1 # now looking for fewer samples
else:
live_samples.append(copy.copy(new_samples[idx]))
live_scores.append(copy.copy(new_scores[idx]))
live_states.append(copy.copy(new_states[idx]))
live_memories.append(copy.copy(new_memories[idx]))
next_w = numpy.array([w[-1] for w in live_samples])
old_scores = numpy.array(live_scores)
next_state = numpy.array(live_states)
next_memory = numpy.array(live_memories)
if live_k < 1:
break
if dead_k >= k:
break
# after max-length is reached, dump out samples that failed to terminate
if live_k > 0:
for idx in xrange(live_k):
sample.append(hyp_samples[idx])
sample_score.append(hyp_scores[idx])
return sample, sample_score
def pred_probs(f_log_probs, prepare_data, data, iterator, verbose=False):
n_samples = len(data[0])
probs = numpy.zeros((n_samples, 1)).astype('float32')
n_done = 0
for _, valid_index in iterator:
x, mask, ctx = prepare_data([data[1][t] for t in valid_index],
[data[0][t] for t in valid_index])
pred_probs = f_log_probs(x,mask,ctx)
probs[valid_index] = pred_probs[:,None]
n_done += len(valid_index)
if verbose:
print '%d/%d samples computed'%(n_done,n_samples)
return probs
# optimizers - direct from Groundhog
# name(hyperp, tparams, grads, inputs (list), cost) = f_grad_shared, f_update
def adadelta(lr, tparams, grads, inp, cost):
zipped_grads = [theano.shared(p.get_value() * numpy.float32(0.), name='%s_grad'%k) for k, p in tparams.iteritems()]
running_up2 = [theano.shared(p.get_value() * numpy.float32(0.), name='%s_rup2'%k) for k, p in tparams.iteritems()]
running_grads2 = [theano.shared(p.get_value() * numpy.float32(0.), name='%s_rgrad2'%k) for k, p in tparams.iteritems()]
zgup = [(zg, g) for zg, g in zip(zipped_grads, grads)]
rg2up = [(rg2, 0.95 * rg2 + 0.05 * (g ** 2)) for rg2, g in zip(running_grads2, grads)]
f_grad_shared = theano.function(inp, cost, updates=zgup+rg2up)
updir = [-tensor.sqrt(ru2 + 1e-6) / tensor.sqrt(rg2 + 1e-6) * zg for zg, ru2, rg2 in zip(zipped_grads, running_up2, running_grads2)]
ru2up = [(ru2, 0.95 * ru2 + 0.05 * (ud ** 2)) for ru2, ud in zip(running_up2, updir)]
param_up = [(p, p + ud) for p, ud in zip(itemlist(tparams), updir)]
f_update = theano.function([lr], [], updates=ru2up+param_up, on_unused_input='ignore')
return f_grad_shared, f_update
def rmsprop(lr, tparams, grads, inp, cost):
zipped_grads = [theano.shared(p.get_value() * numpy.float32(0.), name='%s_grad'%k) for k, p in tparams.iteritems()]
running_grads = [theano.shared(p.get_value() * numpy.float32(0.), name='%s_rgrad'%k) for k, p in tparams.iteritems()]
running_grads2 = [theano.shared(p.get_value() * numpy.float32(0.), name='%s_rgrad2'%k) for k, p in tparams.iteritems()]
zgup = [(zg, g) for zg, g in zip(zipped_grads, grads)]
rgup = [(rg, 0.95 * rg + 0.05 * g) for rg, g in zip(running_grads, grads)]
rg2up = [(rg2, 0.95 * rg2 + 0.05 * (g ** 2)) for rg2, g in zip(running_grads2, grads)]
f_grad_shared = theano.function(inp, cost, updates=zgup+rgup+rg2up)
updir = [theano.shared(p.get_value() * numpy.float32(0.), name='%s_updir'%k) for k, p in tparams.iteritems()]
updir_new = [(ud, 0.9 * ud - 1e-4 * zg / tensor.sqrt(rg2 - rg ** 2 + 1e-4)) for ud, zg, rg, rg2 in zip(updir, zipped_grads, running_grads, running_grads2)]
param_up = [(p, p + udn[1]) for p, udn in zip(itemlist(tparams), updir_new)]
f_update = theano.function([lr], [], updates=updir_new+param_up, on_unused_input='ignore')
return f_grad_shared, f_update
def sgd(lr, tparams, grads, x, mask, y, cost):
gshared = [theano.shared(p.get_value() * 0., name='%s_grad'%k) for k, p in tparams.iteritems()]
gsup = [(gs, g) for gs, g in zip(gshared, grads)]
f_grad_shared = theano.function([x, mask, y], cost, updates=gsup)
pup = [(p, p - lr * g) for p, g in zip(itemlist(tparams), gshared)]
f_update = theano.function([lr], [], updates=pup)
return f_grad_shared, f_update
def train(dim_word=100, # dim embeddings of output words
ctx_dim=300, # external vector dim
dim=1000, # the number of LSTM units (as per NMT)
patience=10,
max_epochs=5000,
dispFreq=100,
decay_c=0.,
lrate=0.01,
n_words=100000,
maxlen=100, # maximum length of the description
optimizer='rmsprop',
batch_size = 16,
valid_batch_size = 16,
saveto='model.npz',
validFreq=1000,
saveFreq=1000, # save the parameters after every saveFreq updates
sampleFreq=100, # generate some samples after every sampleFreq updates
dictionary=None, # word dictionary
use_dropout=False,
reload_=False):
# Model options
model_options = locals().copy()
if dictionary:
with open(dictionary, 'rb') as f:
word_dict = pkl.load(f)
word_idict = dict()
for kk, vv in word_dict.iteritems():
word_idict[vv] = kk
if n_words > max(word_dict.values())+1 or n_words < 0:
n_words = max(word_dict.values())+1
model_options['n_words'] = n_words
# reload options
if reload_ and os.path.exists(saveto):
with open('%s.pkl'%saveto, 'rb') as f:
models_options = pkl.load(f)
print 'Loading data'
train, valid, test = load_data(n_words=n_words, valid_portion=0.1)
print 'Building model'
params = init_params(model_options)
# reload parameters
if reload_ and os.path.exists(saveto):
params = load_params(saveto, params)
tparams = init_tparams(params)
trng, use_noise, \
x, mask, ctx, \
cost = \
build_model(tparams, model_options)
print 'Buliding sampler'
f_init, f_next = build_sampler(tparams, model_options, trng)
# before any regularizer
f_log_probs = theano.function([x, mask, ctx], -cost)
cost = cost.mean()
if decay_c > 0.:
decay_c = theano.shared(numpy.float32(decay_c), name='decay_c')
weight_decay = 0.
for kk, vv in tparams.iteritems():
weight_decay += (vv ** 2).sum()
weight_decay *= decay_c
cost += weight_decay
# after any regularizer
f_cost = theano.function([x, mask, ctx], cost)
grads = tensor.grad(cost, wrt=itemlist(tparams))
f_grad = theano.function([x, mask, ctx], grads)
lr = tensor.scalar(name='lr')
f_grad_shared, f_update = eval(optimizer)(lr, tparams, grads, [x, mask, ctx], cost)
print 'Optimization'
if valid:
kf_valid = KFold(len(valid[0]), n_folds=len(valid[0])/valid_batch_size, shuffle=True)
if test:
kf_test = KFold(len(test[0]), n_folds=len(test[0])/valid_batch_size, shuffle=True)
history_errs = []
# reload history
if reload_ and os.path.exists(saveto):
history_errs = numpy.load(saveto)['history_errs']
best_p = None
bad_count = 0
if validFreq == -1:
validFreq = len(train[0])/batch_size
if saveFreq == -1:
saveFreq = len(train[0])/batch_size
if sampleFreq == -1:
sampleFreq = len(train[0])/batch_size
uidx = 0
estop = False
for eidx in range(max_epochs):
n_samples = 0
kf = KFold(len(train[0]), n_folds=len(train[0])/batch_size, shuffle=True)
for _, train_index in kf:
n_samples += train_index.shape[0]
uidx += 1
use_noise.set_value(1.)
x, mask, ctx = prepare_data([train[1][t] for t in train_index],
[train[0][t] for t in train_index],
maxlen=maxlen)
if x == None:
print 'Minibatch with zero sample under length ', maxlen
continue
cost = f_grad_shared(x, mask, ctx)
f_update(lrate)
if numpy.isnan(cost) or numpy.isinf(cost):
print 'NaN detected'
return 1., 1., 1.
if numpy.mod(uidx, dispFreq) == 0:
print 'Epoch ', eidx, 'Update ', uidx, 'Cost ', cost
if numpy.mod(uidx, saveFreq) == 0:
print 'Saving...',
#import ipdb; ipdb.set_trace()
if best_p != None:
params = best_p
else:
params = unzip(tparams)
numpy.savez(saveto, history_errs=history_errs, **params)
with open('%s.pkl'%saveto, 'wb') as f:
pkl.dump(model_options, f)
print 'Done'
if numpy.mod(uidx, sampleFreq) == 0:
x_s, mask_s, ctx_s = prepare_data([train[1][t] for t in range(10)],
[train[0][t] for t in range(10)])
for jj in range(10):
sample, score = gen_sample(tparams, f_init, f_next, ctx_s[jj], model_options,
trng=trng, k=1, maxlen=30)
print 'Truth ',jj,': ',
for vv in x_s[:,jj]:
if vv == 0:
break
if vv in word_idict:
print word_idict[vv],
else:
print 'UNK',
print
print 'Sample ', jj, ': ',
for vv in sample:
if vv == 0:
break
if vv in word_idict:
print word_idict[vv],
else:
print 'UNK',
print
if numpy.mod(uidx, validFreq) == 0:
use_noise.set_value(0.)
train_err = 0
valid_err = 0
test_err = 0
#for _, tindex in kf:
# x, mask = prepare_data(train[0][train_index])
# train_err += (f_pred(x, mask) == train[1][tindex]).sum()
#train_err = 1. - numpy.float32(train_err) / train[0].shape[0]
#train_err = pred_error(f_pred, prepare_data, train, kf)
if valid:
valid_err = -pred_probs(f_log_probs, prepare_data, valid, kf_valid).mean()
if test:
test_err = -pred_probs(f_log_probs, prepare_data, test, kf_test).mean()
history_errs.append([valid_err, test_err])
if uidx == 0 or valid_err <= numpy.array(history_errs)[:,0].min():
best_p = unzip(tparams)
bad_counter = 0
if eidx > patience and valid_err >= numpy.array(history_errs)[:-patience,0].min():
bad_counter += 1
if bad_counter > patience:
print 'Early Stop!'
estop = True
break
print 'Train ', train_err, 'Valid ', valid_err, 'Test ', test_err
#print 'Epoch ', eidx, 'Update ', uidx, 'Train ', train_err, 'Valid ', valid_err, 'Test ', test_err
print 'Seen %d samples'%n_samples
if estop:
break
if best_p is not None:
zipp(best_p, tparams)
use_noise.set_value(0.)
train_err = 0
valid_err = 0
test_err = 0
#train_err = pred_error(f_pred, prepare_data, train, kf)
if valid:
valid_err = -pred_probs(f_log_probs, prepare_data, valid, kf_valid)
if test:
test_err = -pred_probs(f_log_probs, prepare_data, test, kf_test)
print 'Train ', train_err, 'Valid ', valid_err, 'Test ', test_err
params = copy.copy(best_p)
numpy.savez(saveto, zipped_params=best_p, train_err=train_err,
valid_err=valid_err, test_err=test_err, history_errs=history_errs,
**params)
return train_err, valid_err, test_err
if __name__ == '__main__':
pass