-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathRNN2RNN.py
More file actions
832 lines (696 loc) · 39.7 KB
/
RNN2RNN.py
File metadata and controls
832 lines (696 loc) · 39.7 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
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
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
# Copyright 2015 The TensorFlow Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ==============================================================================
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
import random
import time
import math
import sys
import os
import numpy as np
from six.moves import xrange # pylint: disable=redefined-builtin
import tensorflow as tf
from tensorflow.contrib.legacy_seq2seq import basic_rnn_seq2seq, sequence_loss_by_example, sequence_loss
import data_utils as data_utils
from data_utils import get_embedding_data, LogFileWriter
# from sample_vocab import get_sampled_toy_set
from multiprocessing_generator import ParallelGenerator
from tensorflow.python.ops import variable_scope
# from preprocessing.preprocessing import pickle_call, pickle_dump
# from tqdm import *
#
BASIC = "basic"
CUDNN = "cudnn"
BLOCK = "block"
def data_type():
return tf.float32
class TestConfigToy(object):
def __init__(self):
self.init_scale = 0.1
self.learning_rate = 0.001
self.num_layers = 2
# self.num_steps = 10
self.hidden_size = 200
self.num_samples = 512
self.max_epoch = 1
self.max_max_epoch = 1
self.cell_keep_prob = 0.35
self.lr_decay = 0.99 # 1 / 1.15 # 0.5
self.batch_size = 20
self.vocab_size = 10000
self.embedding_dim = 300
self.rnn_mode = BLOCK
self.epoch_size = 100
self.file_count = -1
self.location = "data/embedding_data/toy_embeddings_epoche_99_lr_1e-05_vectors"
self.cpu = "/cpu:0"
self.gpu = "/cpu:0"
self.min_doc_length = 50
self.dtype = data_type()
self.use_lstm = True
self.buckets = [(5,5), (20,20)]
self.max_gradient_norm = 5.0
self.train_dir = "data/RNN/"
self.steps_per_checkpoint = 100
self.vocab_size, self.embedding_dim, self.embeddings_mentions_list, self.embeddings_mentions, self.embeddings_np = get_embedding_data(self.location, self.vocab_size)
self.train_set , self.test_set, self.validation_set = data_utils.sentences_train_test_validation_splitting_and_paragraph_generation(self.embeddings_mentions,'data/text_data/raw_sentences.txt', splitting=(70,20,10))
self.train_args = (self.batch_size, self.buckets, self.train_set)
self.test_args = (self.batch_size, self.buckets, self.test_set)
self.generator = data_utils.toy_text_generator
class Seq2SeqModel(object):
"""Sequence-to-sequence model with attention and for multiple buckets.
This class implements a multi-layer recurrent neural network as encoder,
and an attention-based decoder. This is the same as the model described in
this paper: http://arxiv.org/abs/1412.7449 - please look there for details,
or into the seq2seq library for complete model implementation.
This class also allows to use GRU cells in addition to LSTM cells, and
sampled softmax to handle large output vocabulary size. A single-layer
version of this model, but with bi-directional encoder, was presented in
http://arxiv.org/abs/1409.0473
and sampled softmax is described in Section 3 of the following paper.
http://arxiv.org/abs/1412.2007
"""
def __init__(self, config, forward_only):
"""Create the model.
Args:
source_vocab_size: size of the source vocabulary.
target_vocab_size: size of the target vocabulary.
buckets: a list of pairs (I, O), where I specifies maximum input length
that will be processed in that bucket, and O specifies maximum output
length. Training instances that have inputs longer than I or outputs
longer than O will be pushed to the next bucket and padded accordingly.
We assume that the list is sorted, e.g., [(2, 4), (8, 16)].
size: number of units in each layer of the model.
num_layers: number of layers in the model.
max_gradient_norm: gradients will be clipped to maximally this norm.
batch_size: the size of the batches used during training;
the model construction is independent of batch_size, so it can be
changed after initialization if this is convenient, e.g., for decoding.
learning_rate: learning rate to start with.
learning_rate_decay_factor: decay learning rate by this much when needed.
use_lstm: if true, we use LSTM cells instead of GRU cells.
num_samples: number of samples for sampled softmax.
forward_only: if set, we do not construct the backward pass in the model.
dtype: the data type to use to store internal variables.
"""
self.config = config
# with tf.device(self.config.gpu):
self.learning_rate = tf.Variable(
float(self.config.learning_rate), trainable=False, dtype=self.config.dtype)
self.learning_rate_decay_op = self.learning_rate.assign(
self.learning_rate * self.config.lr_decay)
self.global_step = tf.Variable(0, trainable=False)
self.initializers()
# print ("retrieving embedding data")
# self.get_embedding_data()
print( 'building embedding tensor')
self.build_embedding_tensor()
# print('Building input tensors')
# self.build_data_tensor()
# If we use sampled softmax, we need an output projection.
# with tf.device(self.config.gpu):
softmax_loss_function = None
w_t = tf.get_variable("proj_w", [self.config.vocab_size, self.config.hidden_size], dtype=self.config.dtype)
w = tf.transpose(w_t)
b = tf.get_variable("proj_b", [self.config.vocab_size], dtype=self.config.dtype)
output_projection = (w, b)
# self.output_positions = tf.get_variable(name='output_positions', shape=[1, self.config.batch_size],
# dtype=tf.int64, initializer=self.const_initializer_int_ones,
# trainable=False)
# Sampled softmax only makes sense if we sample less than vocabulary size.
if config.num_samples > 0 and self.config.num_samples < self.config.vocab_size:
def sampled_loss(labels, logits):
labels = tf.reshape(labels, [-1, 1])
# We need to compute the sampled_softmax_loss using 32bit floats to
# avoid numerical instabilities.
local_w_t = tf.cast(w_t, tf.float32)
local_b = tf.cast(b, tf.float32)
local_inputs = tf.cast(logits, tf.float32)
return tf.cast(
tf.nn.sampled_softmax_loss(
weights=local_w_t,
biases=local_b,
labels=labels,
inputs=local_inputs,
num_sampled=self.config.num_samples,
num_classes=self.config.vocab_size),
config.dtype)
softmax_loss_function = sampled_loss
# Build loop function if for generation
def _extract_argmax_and_embed(embedding, do_decode, output_projection=None, update_embedding=False, ):
def loop_function(prev, _):
if output_projection is not None:
prev = tf.nn.xw_plus_b(prev, output_projection[0], output_projection[1])
prev_symbol = tf.argmax(prev, 1)
# Note that gradients will not propagate through the second parameter of
# embedding_lookup.
emb_prev = tf.nn.embedding_lookup(embedding, prev_symbol)
# self.output_positions = tf.concat([self.output_positions, [prev_symbol]], axis=0)
if not update_embedding:
emb_prev = tf.stop_gradient(emb_prev)
return emb_prev
if do_decode:
return loop_function
else:
return None
# Create the internal multi-layer cell for our RNN.
def single_cell():
return tf.contrib.rnn.GRUCell(self.config.hidden_size)
if self.config.use_lstm:
def single_cell():
return tf.contrib.rnn.BasicLSTMCell(self.config.hidden_size)
cell = single_cell()
if not forward_only and self.config.cell_keep_prob < 1:
cell = tf.contrib.rnn.DropoutWrapper(
cell, output_keep_prob=self.config.cell_keep_prob)
if self.config.num_layers > 1:
cell = tf.contrib.rnn.MultiRNNCell([single_cell() for _ in range(self.config.num_layers)])
def seq2seq_f(encoder_inputs, decoder_inputs, do_decode):
return tf.contrib.legacy_seq2seq.tied_rnn_seq2seq(
encoder_inputs,
decoder_inputs,
cell,
loop_function = _extract_argmax_and_embed(self.embeddings, do_decode, output_projection=output_projection),
# data_type = self.config.dtype
)
# Feeds for inputs.
self.targets = []
self.encoder_inputs = []
self.decoder_inputs = []
self.target_weights = []
for i, bucket in enumerate(self.config.buckets):
# for i in xrange(self.config.buckets[-1][0]): # Last bucket is the biggest one.
targets_j = []
target_weights_j = []
for j in xrange(bucket[0]): # Last bucket is the biggest one.
targets_j.append(tf.placeholder(tf.int32, shape=[None],
name="targets{0}_{0}".format(i,j)))
target_weights_j.append(tf.placeholder(self.config.dtype, shape=[None],
name="weight{0}_{0}".format(i)))
self.targets.append(targets_j)
self.target_weights.append(target_weights_j)
with tf.device(self.config.cpu):
for targets_j in self.targets:
encoder_inputs_j = []
decoder_inputs_j = []
for j, target in enumerate(targets_j):
emb_look = tf.nn.embedding_lookup(self.embeddings, target)
encoder_inputs_j.insert(0, emb_look)
if j != len(targets_j)-1:
decoder_inputs_j.append(emb_look)
decoder_inputs_j.insert(0, tf.nn.embedding_lookup(self.embeddings, np.full(self.config.batch_size, data_utils.GO_ID)))
self.encoder_inputs.append(encoder_inputs_j)
self.decoder_inputs.append(decoder_inputs_j)
# for i in xrange(self.config.buckets[-1][1]):
# # self.decoder_inputs.append(tf.placeholder(tf.int32, shape=[None],
# # name="decoder{0}".format(i)))
# self.target_weights.append(tf.placeholder(self.config.dtype, shape=[None],
# name="weight{0}_{0}".format(i)))
# Our targets are decoder inputs shifted by one.
# self.input_decoder_words = [self.input_decoder_words[i + 1]
# for i in xrange(len(self.input_decoder_words) - 1)]
# with tf.device(self.config.gpu):
# Training outputs and losses.
if forward_only:
# self.outputs, self.losses = tf.contrib.legacy_seq2seq.model_with_buckets(
self.outputs, self.losses = self.model_with_buckets(
self.encoder_inputs, self.decoder_inputs, self.targets,
self.target_weights, self.config.buckets, lambda x, y: seq2seq_f(x, y, True),
softmax_loss_function=softmax_loss_function)
# If we use output projection, we need to project outputs for decoding.
if output_projection is not None:
for b in xrange(len(self.config.buckets)):
self.outputs[b] = [
tf.matmul(output, output_projection[0]) + output_projection[1]
for output in self.outputs[b]
]
else:
# self.outputs, self.losses = tf.contrib.legacy_seq2seq.model_with_buckets(
self.outputs, self.losses = self.model_with_buckets(
self.encoder_inputs, self.decoder_inputs, self.targets,
self.target_weights, self.config.buckets,
lambda x, y: seq2seq_f(x, y, False),
softmax_loss_function=softmax_loss_function)
# Gradients and SGD update operation for training the model.
params = tf.trainable_variables()
if not forward_only:
self.gradient_norms = []
self.updates = []
# opt = tf.train.GradientDescentOptimizer(self.learning_rate)
opt = tf.train.AdamOptimizer(self.learning_rate)
for b in xrange(len(self.config.buckets)):
gradients = tf.gradients(self.losses[b], params)
clipped_gradients, norm = tf.clip_by_global_norm(gradients,
self.config.max_gradient_norm)
self.gradient_norms.append(norm)
self.updates.append(opt.apply_gradients(
zip(clipped_gradients, params), global_step=self.global_step))
# self.saver = tf.train.Saver(tf.trainable_variables())
self.saver = tf.train.Saver(tf.global_variables())
def initializers(self):
self.const_initializer = tf.constant_initializer([0.0], dtype=data_type())
self.const_initializer_int = tf.constant_initializer([0], dtype=tf.int32)
self.const_initializer_int_ones = tf.constant_initializer([1], dtype=tf.int32)
def build_embedding_tensor(self):
# with tf.device(self.cpu):
with tf.device(self.config.cpu):
# self.embeddings = tf.Variable(tf.constant(0.0, shape=[self.config.vocab_size, self.config.embedding_dim]),
# trainable=False, name="W")
with tf.name_scope('embedding'):
self.embeddings = tf.get_variable(name="Embeddings",
shape=[self.config.vocab_size, self.config.embedding_dim],
dtype=data_type(), initializer=self.const_initializer,
trainable=False)
self.embedding_placeholder = tf.placeholder(data_type(),
[self.config.vocab_size, self.config.embedding_dim])
self.embedding_init = self.embeddings.assign(self.embedding_placeholder)
# def build_data_tensor(self):
# # self.input = tf.Variable(tf.constant(0.0, shape=[self.config.batch_size, self.config.num_steps, self.config.embedding_dim]), trainable=False, name='input')
# # self.input_y = tf.Variable(tf.constant(0, shape=[self.config.batch_size, self.config.num_steps]), trainable=False, name='input_y')
# with tf.name_scope('input_data'):
#
# """
# ENCODER INPUTS
# """
# self.encoder_inputs = tf.get_variable(name='input', shape=[self.config.batch_size, self.config.num_steps,
# self.config.embedding_dim],
# initializer=self.const_initializer, trainable=False, dtype=data_type())
# self.input_words = tf.placeholder(tf.int32, shape=[self.config.batch_size, self.config.num_steps],
# name='input_words')
# self.input_emb_look = tf.nn.embedding_lookup(self.embeddings, self.input_words,
# name='input_emb_look')
# self.encoder_inputs_init = self.encoder_inputs.assign(self.input_emb_look)
#
# # """
# # TARGETS
# # """
# # self.targets = tf.get_variable(name='input_y',
# # shape=[self.config.batch_size, self.config.num_steps],
# # initializer=self.const_initializer_int, trainable=False,
# # dtype=tf.int32)
# # self.target_words = tf.placeholder(tf.int32, shape=[self.config.batch_size, self.config.num_steps],
# # name='target_words')
# # self.targets_init = self.targets.assign(self.target_words)
#
# """
# DECODER INPUTS
# """
# self.decoder_inputs = tf.get_variable(name='input_decoder',
# shape=[self.config.batch_size, self.config.num_steps,
# self.config.embedding_dim],
# initializer=self.const_initializer, trainable=False,
# dtype=data_type())
# self.input_decoder_words = tf.placeholder(tf.int32,
# shape=[self.config.batch_size, self.config.num_steps],
# name='input_decoder_words')
# self.dec_emb_look = tf.nn.embedding_lookup(self.embeddings, self.input_decoder_words,
# name='dec_emb_look')
# self.decoder_inputs_init = self.decoder_inputs.assign(self.dec_emb_look)
#
# """
# WEIGHTS
# """
# self.padded_weights = tf.placeholder(data_type(), [self.config.batch_size, self.config.num_steps])
def step(self, session, encoder_inputs, target_weights,
bucket_id, forward_only):
"""Run a step of the model feeding the given inputs.
Args:
session: tensorflow session to use.
encoder_inputs: list of numpy int vectors to feed as encoder inputs.
decoder_inputs: list of numpy int vectors to feed as decoder inputs.
target_weights: list of numpy float vectors to feed as target weights.
bucket_id: which bucket of the model to use.
forward_only: whether to do the backward step or only forward.
Returns:
A triple consisting of gradient norm (or None if we did not do backward),
average perplexity, and the outputs.
Raises:
ValueError: if length of encoder_inputs, decoder_inputs, or
target_weights disagrees with bucket size for the specified bucket_id.
"""
# Check if the sizes match.
encoder_size, decoder_size = self.config.buckets[bucket_id]
if len(encoder_inputs) != encoder_size:
raise ValueError("Encoder length must be equal to the one in bucket,"
" %d != %d." % (len(encoder_inputs), encoder_size))
# if len(decoder_inputs) != decoder_size:
# raise ValueError("Decoder length must be equal to the one in bucket,"
# " %d != %d." % (len(decoder_inputs), decoder_size))
if len(target_weights) != decoder_size:
raise ValueError("Weights length must be equal to the one in bucket,"
" %d != %d." % (len(target_weights), decoder_size))
# Input feed: encoder inputs, decoder inputs, target_weights, as provided.
input_feed = {}
for l in xrange(encoder_size):
input_feed[self.targets[bucket_id][l].name] = encoder_inputs[l]
for l in xrange(decoder_size):
# input_feed[self.decoder_inputs[l].name] = decoder_inputs[l]
input_feed[self.target_weights[bucket_id][l].name] = target_weights[l]
# Since our targets are decoder inputs shifted by one, we need one more.
# last_target = self.decoder_inputs[decoder_size].name
# input_feed[last_target] = np.zeros([self.config.batch_size], dtype=np.int32)
# Output feed: depends on whether we do a backward step or not.
if not forward_only:
output_feed = [self.updates[bucket_id], # Update Op that does SGD.
self.gradient_norms[bucket_id], # Gradient norm.
self.losses[bucket_id]] # Loss for this batch.
else:
output_feed = [self.losses[bucket_id]] # Loss for this batch.
for l in xrange(decoder_size): # Output logits.
output_feed.append(self.outputs[bucket_id][l])
outputs = session.run(output_feed, input_feed)
if not forward_only:
return outputs[1], outputs[2], None # Gradient norm, loss, no outputs.
else:
return None, outputs[0], outputs[1:] # No gradient norm, loss, outputs.
def get_batch(self, data, bucket_id):
"""Get a random batch of data from the specified bucket, prepare for step.
To feed data in step(..) it must be a list of batch-major vectors, while
data here contains single length-major cases. So the main logic of this
function is to re-index data cases to be in the proper format for feeding.
Args:
data: a tuple of size len(self.buckets) in which each element contains
lists of pairs of input and output data that we use to create a batch.
bucket_id: integer, which bucket to get the batch for.
Returns:
The triple (encoder_inputs, decoder_inputs, target_weights) for
the constructed batch that has the proper format to call step(...) later.
"""
encoder_size, decoder_size = self.config.buckets[bucket_id]
encoder_inputs = []
# Get a random batch of encoder and decoder inputs from data,
# pad them if needed, reverse encoder inputs and add GO to decoder.
for d in data:
# Encoder inputs are padded and then reversed.
encoder_pad = [data_utils.PAD_ID] * (encoder_size - len(d))
encoder_inputs.append(list(d + encoder_pad))
while len(encoder_inputs) < self.config.batch_size:
encoder_inputs.append([data_utils.PAD_ID] * encoder_size)
# Now we create batch-major vectors from the data selected above.
batch_encoder_inputs, batch_weights = [], []
# Batch encoder inputs are just re-indexed encoder_inputs.
for length_idx in xrange(encoder_size):
try:
batch_encoder_inputs.append(
np.array([encoder_inputs[batch_idx][length_idx]
for batch_idx in xrange(self.config.batch_size)], dtype=np.int32))
except:
pass
batch_weight = np.ones(self.config.batch_size, dtype=np.float32)
for batch_idx in xrange(self.config.batch_size):
# We set weight to 0 if the corresponding target is a PAD symbol.
# The corresponding target is decoder_input shifted by 1 forward.
if encoder_inputs[batch_idx][length_idx] == data_utils.PAD_ID:
batch_weight[batch_idx] = 0.0
batch_weights.append(batch_weight)
# batch_weights.append(np.zeros(self.config.batch_size, dtype=np.float32))
if np.array(batch_encoder_inputs).size != np.array(batch_weights).size:
pass
return batch_encoder_inputs, batch_weights
def model_with_buckets(self, encoder_inputs,
decoder_inputs,
targets,
weights,
buckets,
seq2seq,
softmax_loss_function=None,
per_example_loss=False,
name=None):
"""Create a sequence-to-sequence model with support for bucketing.
The seq2seq argument is a function that defines a sequence-to-sequence model,
e.g., seq2seq = lambda x, y: basic_rnn_seq2seq(
x, y, rnn_cell.GRUCell(24))
Args:
encoder_inputs: A list of Tensors to feed the encoder; first seq2seq input.
decoder_inputs: A list of Tensors to feed the decoder; second seq2seq input.
targets: A list of 1D batch-sized int32 Tensors (desired output sequence).
weights: List of 1D batch-sized float-Tensors to weight the targets.
buckets: A list of pairs of (input size, output size) for each bucket.
seq2seq: A sequence-to-sequence model function; it takes 2 input that
agree with encoder_inputs and decoder_inputs, and returns a pair
consisting of outputs and states (as, e.g., basic_rnn_seq2seq).
softmax_loss_function: Function (labels, logits) -> loss-batch
to be used instead of the standard softmax (the default if this is None).
**Note that to avoid confusion, it is required for the function to accept
named arguments.**
per_example_loss: Boolean. If set, the returned loss will be a batch-sized
tensor of losses for each sequence in the batch. If unset, it will be
a scalar with the averaged loss from all examples.
name: Optional name for this operation, defaults to "model_with_buckets".
Returns:
A tuple of the form (outputs, losses), where:
outputs: The outputs for each bucket. Its j'th element consists of a list
of 2D Tensors. The shape of output tensors can be either
[batch_size x output_size] or [batch_size x num_decoder_symbols]
depending on the seq2seq model used.
losses: List of scalar Tensors, representing losses for each bucket, or,
if per_example_loss is set, a list of 1D batch-sized float Tensors.
Raises:
ValueError: If length of encoder_inputs, targets, or weights is smaller
than the largest (last) bucket.
"""
# if len(encoder_inputs) < buckets[-1][0]:
# raise ValueError("Length of encoder_inputs (%d) must be at least that of la"
# "st bucket (%d)." % (len(encoder_inputs), buckets[-1][0]))
# if len(targets) < buckets[-1][1]:
# raise ValueError("Length of targets (%d) must be at least that of last "
# "bucket (%d)." % (len(targets), buckets[-1][1]))
# if len(weights) < buckets[-1][1]:
# raise ValueError("Length of weights (%d) must be at least that of last "
# "bucket (%d)." % (len(weights), buckets[-1][1]))
# with tf.device(self.config.gpu):
all_inputs = encoder_inputs + decoder_inputs + targets + weights
losses = []
outputs = []
with tf.name_scope(name, "model_with_buckets", all_inputs):
for j, bucket in enumerate(buckets):
with variable_scope.variable_scope(
variable_scope.get_variable_scope(), reuse=True if j > 0 else None):
bucket_outputs, _ = seq2seq(encoder_inputs[j],
decoder_inputs[j])
outputs.append(bucket_outputs)
if per_example_loss:
losses.append(
sequence_loss_by_example(
outputs[-1],
targets[j],
weights[j],
softmax_loss_function=softmax_loss_function))
else:
losses.append(
sequence_loss(
outputs[-1],
targets[j],
weights[j],
softmax_loss_function=softmax_loss_function))
return outputs, losses
def create_model(session, config, forward_only):
"""Create translation model and initialize or load parameters in session."""
# dtype = tf.float16 if FLAGS.use_fp16 else tf.float32
model = Seq2SeqModel(config, forward_only)
ckpt = tf.train.get_checkpoint_state(config.train_dir)
# print (ckpt.model_checkpoint_path)
if ckpt and tf.train.checkpoint_exists(ckpt.model_checkpoint_path):
print("Reading model parameters from %s" % ckpt.model_checkpoint_path)
model.saver.restore(session, ckpt.model_checkpoint_path)
else:
print("Created model with fresh parameters.")
session.run(tf.global_variables_initializer())
# model.load_embeddings(session, embeddings)
writer = tf.summary.FileWriter('seq2seqjon', session.graph)
return model
def train(config, forward_only, train_log_file, test_log_file):
"""Train a en->fr translation model using WMT data."""
sess_config = tf.ConfigProto(
# allow_soft_placement=True,
# log_device_placement=True
)
sess_config.gpu_options.allocator_type = 'BFC'
# config.gpu_options.per_process_gpu_memory_fraction = 0.99
sess_config.gpu_options.allow_growth = True
with tf.Session(config=sess_config) as sess:
# with tf.Session() as sess:
# Create model.
print("Creating %d layers of %d units." % (config.num_layers, config.hidden_size))
vocab_size = config.vocab_size
print('getting embeddings')
# embeddings_mentions, embeddings, embeddings_mentions_list = data_utils.get_embedding_data(location, vocab_size)
# train_set, test_set = doc_bucket_seperator(mongodb_name, _buckets, embeddings_mentions, train_test_perc=0.80,
# nr_docs=100)
# config.vocab_size = len(embeddings)
# config.embedding_dim = len(embeddings[0])
print('building model')
model = create_model(sess,config, forward_only)
sess.run(model.embedding_init, {model.embedding_placeholder: model.config.embeddings_np})
# train_set, dev_set = data_utils.bucket_generator(mongodb_name, config.buckets, max_len, embeddings_mentions, train_length,
# test_length)
# train_bucket_sizes = [len(train_set[b]) for b in xrange(len(config.buckets))]
# train_total_size = float(sum(train_bucket_sizes))
# # A bucket scale is a list of increasing numbers from 0 to 1 that we'll use
# # to select a bucket. Length of [scale[i], scale[i+1]] is proportional to
# # the size if i-th training bucket, as used later.
# train_buckets_scale = [sum(train_bucket_sizes[:i + 1]) / train_total_size
# for i in xrange(len(train_bucket_sizes))]
# This is the training loop.
step_time, single_step_time, loss, single_step_loss = 0.0, 0.0, 0.0, 0.0
current_step = 0
previous_losses = []
print('starting training')
for epoch in xrange(config.epoch_size):
train_log_file.append_text('Epoch: ' + str(epoch))
test_log_file.append_text('Epoch: ' + str(epoch))
# generator = new_bucket_generator(mongodb_name, config.buckets, train_set, embeddings_mentions, 4)
generator = config.generator(*config.train_args)
# while True:
# Choose a bucket according to data distribution. We pick a random number
# in [0, 1] and use the corresponding interval in train_buckets_scale.
# batch, bucket_id = generator.next()
with ParallelGenerator(generator, max_lookahead=3, get_timeout=60) as batch_gen_lookahead:
for batch, bucket_id in batch_gen_lookahead:
if batch is None: break
# Get a batch and make a step.
start_time = time.time()
encoder_inputs, target_weights = model.get_batch(batch, bucket_id)
_, step_loss, _ = model.step(sess, encoder_inputs,
target_weights, bucket_id, False)
step_time += (time.time() - start_time) / config.steps_per_checkpoint
single_step_time += (time.time() - start_time) / (config.steps_per_checkpoint / 100)
loss += step_loss / config.steps_per_checkpoint
single_step_loss += step_loss / (config.steps_per_checkpoint / 100)
current_step += 1
# Once in a while, we save checkpoint, print statistics, and run evals.
# if current_step % config.steps_per_checkpoint == 0:
# perplexity = math.exp(float(loss)) if loss < 300 else float("inf")
# print("global step %d learning rate %.4f step-time %.2f perplexity "
# "%.2f" % (model.global_step.eval(session=sess), model.learning_rate.eval(session=sess),
# step_time, perplexity))
# # Decrease learning rate if no improvement was seen over last 3 times.
# if len(previous_losses) > 2 and loss > max(previous_losses[-3:]):
# sess.run(model.learning_rate_decay_op)
# previous_losses.append(loss)
# train_log_file.append_text(
# str(model.global_step.eval(session=sess)) + ';' + str(perplexity) + ';' + str(loss) + ';' + str(
# model.learning_rate.eval(session=sess)) + ';' + str(step_time))
#
# step_time, loss = 0.0, 0.0
# # Save checkpoint and zero timer and loss.
# # checkpoint_path = os.path.join(config.train_dir, "translate.ckpt")
# # model.saver.save(sess, checkpoint_path, global_step=model.global_step)
# # Run evals on development set and print their perplexity.
#
#
#
# if current_step % (config.steps_per_checkpoint / 100) == 0:
# # Print statistics for the previous epoch.
# perplexity = math.exp(float(single_step_loss)) if single_step_loss < 300 else float("inf")
# print("global step %d learning rate %.4f step-time %.2f perplexity "
# "%.2f" % (model.global_step.eval(session=sess), model.learning_rate.eval(session=sess),
# single_step_time, perplexity))
# single_step_time, single_step_loss = 0.0, 0.0
if current_step % config.steps_per_checkpoint == 0:
# loss = loss / checkpoint_counter
perplexity = math.exp(float(loss)) if loss < 300 else float("inf")
print("global step %d learning rate %.4f step-time %.2f perplexity "
"%.2f" % (model.global_step.eval(session=sess), model.learning_rate.eval(session=sess),
step_time, perplexity))
# Decrease learning rate if no improvement was seen over last 3 times.
# if len(previous_losses) > 2 and loss > max(previous_losses[-3:]):
# sess.run(model.learning_rate_decay_op)
# previous_losses.append(loss)
train_log_file.append_text(str(model.global_step.eval(session=sess)) + ';' + str(perplexity) + ';' + str(loss) + ';' + str(model.learning_rate.eval(session=sess)) + ';' + str(step_time))
step_time, loss = 0.0, 0.0
checkpoint_path = os.path.join(config.train_dir, "translate.ckpt")
model.saver.save(sess, checkpoint_path, global_step=model.global_step)
test_generator = config.generator(*config.test_args)
print("Testing:")
with ParallelGenerator(test_generator, max_lookahead=10) as batch_gen_lookahead:
for batch, bucket_id in batch_gen_lookahead:
if batch == None: break
encoder_inputs, target_weights = model.get_batch(batch, bucket_id)
_, eval_loss, _ = model.step(sess, encoder_inputs, target_weights, bucket_id, True)
eval_ppx = math.exp(float(eval_loss)) if eval_loss < 300 else float(
"inf")
print(" eval: bucket %d perplexity %.2f" % (bucket_id, eval_ppx))
test_log_file.append_text(str(bucket_id) + ';' + str(eval_ppx) + ';' + str(eval_loss))
step_time, loss = 0.0, 0.0
sys.stdout.flush()
def decode(config):
with tf.Session() as sess:
# Create model and load parameters.
model = create_model(sess, config, True)
model.batch_size = 1 # We decode one sentence at a time.
# Decode from standard input.
sys.stdout.write("> ")
sys.stdout.flush()
sentence = sys.stdin.readline()
while sentence:
# Get token-ids for the input sentence.
token_ids = data_utils.sentence_to_token_ids(tf.compat.as_bytes(sentence), config.embeddings_mentions)
# Which bucket does it belong to?
bucket_id = len(config.buckets) - 1
for i, bucket in enumerate(config.buckets):
if bucket[0] >= len(token_ids):
bucket_id = i
break
# else:
# logging.warning("Sentence truncated: %s", sentence)
# Get a 1-element batch to feed the sentence to the model.
# encoder_inputs, target_weights = model.get_batch({bucket_id: [(token_ids, [])]}, bucket_id)
encoder_inputs, target_weights = model.get_batch([token_ids], bucket_id)
# Get output logits for the sentence.
_, _, output_logits = model.step(sess, encoder_inputs, target_weights, bucket_id, True)
# This is a greedy decoder - outputs are just argmaxes of output_logits.
outputs = [int(np.argmax(logit[0])) for logit in output_logits]
# If there is an EOS symbol in outputs, cut them at that point.
if data_utils.EOS_ID in outputs:
outputs = outputs[:outputs.index(data_utils.EOS_ID)]
# Print out French sentence corresponding to outputs.
# print(" ".join([tf.compat.as_str(config.embeddings_mentions_list[output]) for output in outputs]))
out_str = ""
for output in outputs:
try:
out_str += config.embeddings_mentions_list[output] + ' '
except:
pass
print(out_str)
print("> ", end="")
sys.stdout.flush()
sentence = sys.stdin.readline()
if __name__ == '__main__':
path = '/Users/jonaspfeiffer/dev/data/seq2seq_RNN/'
hidden_sizes = range(10,201,10)
for hidden_size in hidden_sizes:
current_path = path + 'hidden_size_' + str(hidden_size) + '/'
if not os.path.exists(current_path):
os.makedirs(current_path)
train_log_file = LogFileWriter(current_path + 'RNN_hidden_size_' + str(hidden_size) + '_train_log.csv')
test_log_file = LogFileWriter(current_path + 'RNN_hidden_size_' + str(hidden_size) + '_test_log.csv')
train_config = TestConfigToy()
train_config.hidden_size = hidden_size
train_config.train_dir = current_path
train_log_file.append_text('RNN LSTM')
train_log_file.append_text('Hidden Size = ' + str(hidden_size))
test_log_file.append_text('RNN LSTM')
test_log_file.append_text('Hidden Size = ' + str(hidden_size))
train(train_config, False, train_log_file, test_log_file)
tf.reset_default_graph()
#
#
# train_config = TestConfigToy()
# train(train_config, False)
# train_config.batch_size = 1
# decode(train_config)
# pass