-
Notifications
You must be signed in to change notification settings - Fork 3
/
second_model.py
836 lines (746 loc) · 40.1 KB
/
second_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
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
833
834
835
from modules import label_smoothing
import collections
import numpy
import pickle
import re
import tensorflow as tf
class Model(object):
"""
Implements the multi-head attention labeller (MHAL)
without keys, queries, and values.
It only uses a simple, soft attention.
"""
def __init__(self, config, label2id_sent, label2id_tok):
self.config = config
self.label2id_sent = label2id_sent
self.label2id_tok = label2id_tok
self.UNK = "<unk>"
self.CUNK = "<cunk>"
self.word2id = None
self.char2id = None
self.singletons = None
self.num_heads = None
self.word_ids = None
self.char_ids = None
self.sentence_lengths = None
self.word_lengths = None
self.sentence_labels = None
self.word_labels = None
self.word_embeddings = None
self.char_embeddings = None
self.word_objective_weights = None
self.sentence_objective_weights = None
self.learning_rate = None
self.loss = None
self.initializer = None
self.is_training = None
self.session = None
self.saver = None
self.train_op = None
self.sentence_predictions = None
self.sentence_probabilities = None
self.token_predictions = None
self.token_probabilities = None
def build_vocabs(self, data_train, data_dev, data_test, embedding_path=None):
"""
Builds the vocabulary based on the the data and embeddings info.
"""
data_source = list(data_train)
if self.config["vocab_include_devtest"]:
if data_dev is not None:
data_source += data_dev
if data_test is not None:
data_source += data_test
char_counter = collections.Counter()
word_counter = collections.Counter()
for sentence in data_source:
for token in sentence.tokens:
char_counter.update(token.value)
w = token.value
if self.config["lowercase"]:
w = w.lower()
if self.config["replace_digits"]:
w = re.sub(r'\d', '0', w)
word_counter[w] += 1
self.char2id = collections.OrderedDict([(self.CUNK, 0)])
for char, count in char_counter.most_common():
if char not in self.char2id:
self.char2id[char] = len(self.char2id)
self.word2id = collections.OrderedDict([(self.UNK, 0)])
for word, count in word_counter.most_common():
if self.config["min_word_freq"] <= 0 or count >= self.config["min_word_freq"]:
if word not in self.word2id:
self.word2id[word] = len(self.word2id)
self.singletons = set([word for word in word_counter if word_counter[word] == 1])
if embedding_path and self.config["vocab_only_embedded"]:
embedding_vocab = {self.UNK}
with open(embedding_path) as f:
for line in f:
line_parts = line.strip().split()
if len(line_parts) <= 2:
continue
w = line_parts[0]
if self.config["lowercase"]:
w = w.lower()
if self.config["replace_digits"]:
w = re.sub(r'\d', '0', w)
embedding_vocab.add(w)
word2id_revised = collections.OrderedDict()
for word in self.word2id:
if word in embedding_vocab and word not in word2id_revised:
word2id_revised[word] = len(word2id_revised)
self.word2id = word2id_revised
print("Total number of words: " + str(len(self.word2id)))
print("Total number of chars: " + str(len(self.char2id)))
print("Total number of singletons: " + str(len(self.singletons)))
def construct_network(self):
"""
Constructs a variant of the multi-head attention labeller (MHAL)
that does not use keys, queries and values, but only a simple form
of additive attention, as proposed by Yang et al. (2016).
"""
self.word_ids = tf.placeholder(tf.int32, [None, None], name="word_ids")
self.char_ids = tf.placeholder(tf.int32, [None, None, None], name="char_ids")
self.sentence_lengths = tf.placeholder(tf.int32, [None], name="sentence_lengths")
self.word_lengths = tf.placeholder(tf.int32, [None, None], name="word_lengths")
self.sentence_labels = tf.placeholder(tf.float32, [None], name="sentence_labels")
self.word_labels = tf.placeholder(tf.float32, [None, None], name="word_labels")
self.word_objective_weights = tf.placeholder(
tf.float32, [None, None], name="word_objective_weights")
self.sentence_objective_weights = tf.placeholder(
tf.float32, [None], name="sentence_objective_weights")
self.learning_rate = tf.placeholder(tf.float32, name="learning_rate")
self.is_training = tf.placeholder(tf.int32, name="is_training")
self.loss = 0.0
if self.config["initializer"] == "normal":
self.initializer = tf.random_normal_initializer(stddev=0.1)
elif self.config["initializer"] == "glorot":
self.initializer = tf.glorot_uniform_initializer()
elif self.config["initializer"] == "xavier":
self.initializer = tf.glorot_normal_initializer()
zeros_initializer = tf.zeros_initializer()
self.word_embeddings = tf.get_variable(
name="word_embeddings",
shape=[len(self.word2id), self.config["word_embedding_size"]],
initializer=(zeros_initializer if self.config["emb_initial_zero"] else self.initializer),
trainable=(True if self.config["train_embeddings"] else False))
word_input_tensor = tf.nn.embedding_lookup(self.word_embeddings, self.word_ids)
if self.config["char_embedding_size"] > 0 and self.config["char_recurrent_size"] > 0:
with tf.variable_scope("chars"), tf.control_dependencies(
[tf.assert_equal(tf.shape(self.char_ids)[2],
tf.reduce_max(self.word_lengths),
message="Char dimensions don't match")]):
self.char_embeddings = tf.get_variable(
name="char_embeddings",
shape=[len(self.char2id), self.config["char_embedding_size"]],
initializer=self.initializer,
trainable=True)
char_input_tensor = tf.nn.embedding_lookup(self.char_embeddings, self.char_ids)
char_input_tensor_shape = tf.shape(char_input_tensor)
char_input_tensor = tf.reshape(
char_input_tensor,
shape=[char_input_tensor_shape[0]
* char_input_tensor_shape[1],
char_input_tensor_shape[2],
self.config["char_embedding_size"]])
_word_lengths = tf.reshape(
self.word_lengths, shape=[char_input_tensor_shape[0]
* char_input_tensor_shape[1]])
char_lstm_cell_fw = tf.nn.rnn_cell.LSTMCell(
self.config["char_recurrent_size"],
use_peepholes=self.config["lstm_use_peepholes"],
state_is_tuple=True,
initializer=self.initializer,
reuse=False)
char_lstm_cell_bw = tf.nn.rnn_cell.LSTMCell(
self.config["char_recurrent_size"],
use_peepholes=self.config["lstm_use_peepholes"],
state_is_tuple=True,
initializer=self.initializer,
reuse=False)
# Concatenate the final forward and the backward character contexts
# to obtain a compact character representation for each word.
_, ((_, char_output_fw), (_, char_output_bw)) = tf.nn.bidirectional_dynamic_rnn(
cell_fw=char_lstm_cell_fw, cell_bw=char_lstm_cell_bw, inputs=char_input_tensor,
sequence_length=_word_lengths, dtype=tf.float32, time_major=False)
char_output_tensor = tf.concat([char_output_fw, char_output_bw], axis=-1)
char_output_tensor = tf.reshape(
char_output_tensor,
shape=[char_input_tensor_shape[0], char_input_tensor_shape[1],
2 * self.config["char_recurrent_size"]])
# Include a char-based language modelling loss, LMc.
if self.config["lm_cost_char_gamma"] > 0.0:
self.loss += self.config["lm_cost_char_gamma"] * \
self.construct_lm_cost(
input_tensor_fw=char_output_tensor,
input_tensor_bw=char_output_tensor,
sentence_lengths=self.sentence_lengths,
target_ids=self.word_ids,
lm_cost_type="separate",
name="lm_cost_char_separate")
if self.config["lm_cost_joint_char_gamma"] > 0.0:
self.loss += self.config["lm_cost_joint_char_gamma"] * \
self.construct_lm_cost(
input_tensor_fw=char_output_tensor,
input_tensor_bw=char_output_tensor,
sentence_lengths=self.sentence_lengths,
target_ids=self.word_ids,
lm_cost_type="joint",
name="lm_cost_char_joint")
if self.config["char_hidden_layer_size"] > 0:
char_output_tensor = tf.layers.dense(
inputs=char_output_tensor, units=self.config["char_hidden_layer_size"],
activation=tf.tanh, kernel_initializer=self.initializer)
if self.config["char_integration_method"] == "concat":
word_input_tensor = tf.concat([word_input_tensor, char_output_tensor], axis=-1)
elif self.config["char_integration_method"] == "none":
word_input_tensor = word_input_tensor
else:
raise ValueError("Unknown char integration method")
if self.config["dropout_input"] > 0.0:
dropout_input = (self.config["dropout_input"] * tf.cast(self.is_training, tf.float32)
+ (1.0 - tf.cast(self.is_training, tf.float32)))
word_input_tensor = tf.nn.dropout(
word_input_tensor, dropout_input, name="dropout_word")
word_lstm_cell_fw = tf.nn.rnn_cell.LSTMCell(
self.config["word_recurrent_size"],
use_peepholes=self.config["lstm_use_peepholes"],
state_is_tuple=True,
initializer=self.initializer,
reuse=False)
word_lstm_cell_bw = tf.nn.rnn_cell.LSTMCell(
self.config["word_recurrent_size"],
use_peepholes=self.config["lstm_use_peepholes"],
state_is_tuple=True,
initializer=self.initializer,
reuse=False)
with tf.control_dependencies(
[tf.assert_equal(
tf.shape(self.word_ids)[1],
tf.reduce_max(self.sentence_lengths),
message="Sentence dimensions don't match")]):
(lstm_outputs_fw, lstm_outputs_bw), ((_, lstm_output_fw), (_, lstm_output_bw)) = \
tf.nn.bidirectional_dynamic_rnn(
cell_fw=word_lstm_cell_fw, cell_bw=word_lstm_cell_bw, inputs=word_input_tensor,
sequence_length=self.sentence_lengths, dtype=tf.float32, time_major=False)
lstm_output_states = tf.concat([lstm_output_fw, lstm_output_bw], axis=-1)
if self.config["dropout_word_lstm"] > 0.0:
dropout_word_lstm = (self.config["dropout_word_lstm"] * tf.cast(self.is_training, tf.float32)
+ (1.0 - tf.cast(self.is_training, tf.float32)))
lstm_outputs_fw = tf.nn.dropout(
lstm_outputs_fw, dropout_word_lstm,
noise_shape=tf.convert_to_tensor(
[tf.shape(self.word_ids)[0], 1, self.config["word_recurrent_size"]], dtype=tf.int32))
lstm_outputs_bw = tf.nn.dropout(
lstm_outputs_bw, dropout_word_lstm,
noise_shape=tf.convert_to_tensor(
[tf.shape(self.word_ids)[0], 1, self.config["word_recurrent_size"]], dtype=tf.int32))
lstm_output_states = tf.nn.dropout(lstm_output_states, dropout_word_lstm)
# The forward and backward states are concatenated at every token position.
lstm_outputs_states = tf.concat([lstm_outputs_fw, lstm_outputs_bw], axis=-1)
if self.config["whidden_layer_size"] > 0:
lstm_outputs_states = tf.layers.dense(
lstm_outputs_states, self.config["whidden_layer_size"],
activation=tf.tanh, kernel_initializer=self.initializer)
if self.config["model_type"] == "last":
processed_tensor = lstm_output_states
token_scores = tf.layers.dense(
lstm_outputs_states, units=len(self.label2id_tok),
kernel_initializer=self.initializer,
name="token_scores_last_lstm_outputs_ff")
if self.config["hidden_layer_size"] > 0:
processed_tensor = tf.layers.dense(
processed_tensor, units=self.config["hidden_layer_size"],
activation=tf.tanh, kernel_initializer=self.initializer)
sentence_scores = tf.layers.dense(
processed_tensor, units=len(self.label2id_sent),
kernel_initializer=self.initializer,
name="sentence_scores_last_lstm_outputs_ff")
else:
with tf.variable_scope("attention"):
token_scores_list = []
sentence_scores_list = []
for i in range(len(self.label2id_tok)):
keys = tf.layers.dense(
lstm_outputs_states, units=self.config["attention_evidence_size"],
activation=tf.tanh, kernel_initializer=self.initializer)
values = tf.layers.dense(
lstm_outputs_states, units=self.config["attention_evidence_size"],
activation=tf.tanh, kernel_initializer=self.initializer)
token_scores_head = tf.layers.dense(
keys, units=1, kernel_initializer=self.initializer) # [B, M, 1]
token_scores_head = tf.reshape(
token_scores_head, shape=tf.shape(self.word_ids)) # [B, M]
token_scores_list.append(token_scores_head)
if self.config["attention_activation"] == "sharp":
attention_weights_unnormalized = tf.exp(token_scores_head)
elif self.config["attention_activation"] == "soft":
attention_weights_unnormalized = tf.sigmoid(token_scores_head)
elif self.config["attention_activation"] == "linear":
attention_weights_unnormalized = token_scores_head
else:
raise ValueError("Unknown/unsupported token scoring method: %s"
% self.config["attention_activation"])
attention_weights_unnormalized = tf.where(
tf.sequence_mask(self.sentence_lengths),
attention_weights_unnormalized,
tf.zeros_like(attention_weights_unnormalized))
attention_weights = attention_weights_unnormalized / tf.reduce_sum(
attention_weights_unnormalized, axis=1, keep_dims=True) # [B, M]
processed_tensor = tf.reduce_sum(
values * attention_weights[:, :, numpy.newaxis], axis=1) # [B, E]
if self.config["hidden_layer_size"] > 0:
processed_tensor = tf.layers.dense(
processed_tensor, units=self.config["hidden_layer_size"],
activation=tf.tanh, kernel_initializer=self.initializer)
sentence_score_head = tf.layers.dense(
processed_tensor, units=1,
kernel_initializer=self.initializer,
name="output_ff_head_%d" % i) # [B, 1]
sentence_score_head = tf.reshape(
sentence_score_head, shape=[tf.shape(processed_tensor)[0]]) # [B]
sentence_scores_list.append(sentence_score_head)
token_scores = tf.stack(token_scores_list, axis=-1) # [B, M, H]
all_sentence_scores = tf.stack(sentence_scores_list, axis=-1) # [B, H]
if len(self.label2id_tok) != len(self.label2id_sent):
if len(self.label2id_sent) == 2:
default_sentence_score = tf.gather(
all_sentence_scores, indices=[0], axis=1) # [B, 1]
maximum_non_default_sentence_score = tf.gather(
all_sentence_scores, indices=list(
range(1, len(self.label2id_tok))), axis=1) # [B, num_heads-1]
maximum_non_default_sentence_score = tf.reduce_max(
maximum_non_default_sentence_score, axis=1, keep_dims=True) # [B, 1]
sentence_scores = tf.concat(
[default_sentence_score, maximum_non_default_sentence_score],
axis=-1, name="sentence_scores_concatenation") # [B, 2]
else:
sentence_scores = tf.layers.dense(
all_sentence_scores, units=len(self.label2id_sent),
kernel_initializer=self.initializer) # [B, num_sent_labels]
else:
sentence_scores = all_sentence_scores
# Mask the token scores that do not fall in the range of the true sentence length.
# Do this for each head (change shape from [B, M] to [B, M, num_heads]).
tiled_sentence_lengths = tf.tile(
input=tf.expand_dims(
tf.sequence_mask(self.sentence_lengths), axis=-1),
multiples=[1, 1, len(self.label2id_tok)])
self.token_probabilities = tf.nn.softmax(token_scores, axis=-1)
self.token_probabilities = tf.where(
tiled_sentence_lengths,
self.token_probabilities,
tf.zeros_like(self.token_probabilities))
self.token_predictions = tf.argmax(self.token_probabilities, axis=2)
self.sentence_probabilities = tf.nn.softmax(sentence_scores)
self.sentence_predictions = tf.argmax(self.sentence_probabilities, axis=1)
if self.config["word_objective_weight"] > 0:
word_objective_loss = tf.nn.sparse_softmax_cross_entropy_with_logits(
logits=token_scores, labels=tf.cast(self.word_labels, tf.int32))
word_objective_loss = tf.where(
tf.sequence_mask(self.sentence_lengths),
word_objective_loss,
tf.zeros_like(word_objective_loss))
self.loss += self.config["word_objective_weight"] * tf.reduce_sum(
self.word_objective_weights * word_objective_loss)
if self.config["sentence_objective_weight"] > 0:
self.loss += self.config["sentence_objective_weight"] * tf.reduce_sum(
self.sentence_objective_weights *
tf.nn.sparse_softmax_cross_entropy_with_logits(
logits=sentence_scores, labels=tf.cast(self.sentence_labels, tf.int32)))
max_over_token_heads = tf.reduce_max(self.token_probabilities, axis=1) # [B, H]
one_hot_sentence_labels = tf.one_hot(
tf.cast(self.sentence_labels, tf.int32),
depth=len(self.label2id_sent))
if self.config["enable_label_smoothing"]:
one_hot_sentence_labels_smoothed = label_smoothing(
one_hot_sentence_labels, epsilon=self.config["smoothing_epsilon"])
else:
one_hot_sentence_labels_smoothed = one_hot_sentence_labels
# At least one token has a label corresponding to the true sentence label.
# This loss also pushes the maximums over the other heads towards 0 (but smoothed).
if self.config["type1_attention_objective_weight"] > 0:
this_max_over_token_heads = max_over_token_heads
if len(self.label2id_tok) != len(self.label2id_sent):
if len(self.label2id_sent) == 2:
max_default_head = tf.gather(
max_over_token_heads, indices=[0], axis=-1) # [B, 1]
max_non_default_head = tf.reduce_max(tf.gather(
max_over_token_heads, indices=list(
range(1, len(self.label2id_tok))), axis=-1),
axis=1, keep_dims=True) # [B, 1]
this_max_over_token_heads = tf.concat(
[max_default_head, max_non_default_head], axis=-1) # [B, 2]
else:
raise ValueError(
"Unsupported attention loss for num_heads != num_sent_lables "
"and num_sentence_labels != 2.")
self.loss += self.config["type1_attention_objective_weight"] * (
tf.reduce_sum(self.sentence_objective_weights * tf.reduce_sum(tf.square(
this_max_over_token_heads - one_hot_sentence_labels_smoothed), axis=-1)))
# The predicted distribution over the token labels (heads) should be similar to the
# predicted distribution over the sentence representations.
if self.config["type2_attention_objective_weight"] > 0:
all_sentence_scores_probabilities = tf.nn.softmax(all_sentence_scores) # [B, H]
self.loss += self.config["type2_attention_objective_weight"] * (
tf.reduce_sum(self.sentence_objective_weights * tf.reduce_sum(tf.square(
max_over_token_heads - all_sentence_scores_probabilities), axis=-1)))
# At least one token has a label corresponding to the true sentence label.
if self.config["type3_attention_objective_weight"] > 0:
this_max_over_token_heads = max_over_token_heads
if len(self.label2id_tok) != len(self.label2id_sent):
if len(self.label2id_sent) == 2:
max_default_head = tf.gather(
max_over_token_heads, indices=[0], axis=-1) # [B, 1]
max_non_default_head = tf.reduce_max(tf.gather(
max_over_token_heads, indices=list(
range(1, len(self.label2id_tok))), axis=-1),
axis=1, keep_dims=True) # [B, 1]
this_max_over_token_heads = tf.concat(
[max_default_head, max_non_default_head], axis=-1) # [B, 2]
else:
raise ValueError(
"Unsupported attention loss for num_heads != num_sent_lables "
"and num_sentence_labels != 2.")
self.loss += self.config["type3_attention_objective_weight"] * (
tf.reduce_sum(self.sentence_objective_weights * tf.reduce_sum(tf.square(
(this_max_over_token_heads * one_hot_sentence_labels)
- one_hot_sentence_labels_smoothed), axis=-1)))
# A sentence that has a default label, should only contain tokens labeled as default.
if self.config["type4_attention_objective_weight"] > 0:
default_head = tf.gather(self.token_probabilities, indices=[0], axis=-1) # [B, M, 1]
default_head = tf.squeeze(default_head, axis=-1) # [B, M]
self.loss += self.config["type4_attention_objective_weight"] * (
tf.reduce_sum(self.sentence_objective_weights * tf.cast(
tf.equal(self.sentence_labels, 0.0), tf.float32) * tf.reduce_sum(
tf.square(default_head - tf.ones_like(default_head)), axis=-1)))
# Every sentence has at least one default label.
if self.config["type5_attention_objective_weight"] > 0:
default_head = tf.gather(self.token_probabilities, indices=[0], axis=-1) # [B, M, 1]
max_default_head = tf.reduce_max(tf.squeeze(default_head, axis=-1), axis=-1) # [B]
self.loss += self.config["type5_attention_objective_weight"] * (
tf.reduce_sum(self.sentence_objective_weights * tf.square(
max_default_head - tf.ones_like(max_default_head))))
# Include a word-based language modelling loss, LMw.
if self.config["lm_cost_lstm_gamma"] > 0.0:
self.loss += self.config["lm_cost_lstm_gamma"] * self.construct_lm_cost(
input_tensor_fw=lstm_outputs_fw,
input_tensor_bw=lstm_outputs_bw,
sentence_lengths=self.sentence_lengths,
target_ids=self.word_ids,
lm_cost_type="separate",
name="lm_cost_lstm_separate")
if self.config["lm_cost_joint_lstm_gamma"] > 0.0:
self.loss += self.config["lm_cost_joint_lstm_gamma"] * self.construct_lm_cost(
input_tensor_fw=lstm_outputs_fw,
input_tensor_bw=lstm_outputs_bw,
sentence_lengths=self.sentence_lengths,
target_ids=self.word_ids,
lm_cost_type="joint",
name="lm_cost_lstm_joint")
self.train_op = self.construct_optimizer(
opt_strategy=self.config["opt_strategy"],
loss=self.loss,
learning_rate=self.learning_rate,
clip=self.config["clip"])
print("Notwork built.")
def construct_lm_cost(
self, input_tensor_fw, input_tensor_bw,
sentence_lengths, target_ids, lm_cost_type, name):
"""
Constructs the char/word-based language modelling objective.
"""
with tf.variable_scope(name):
lm_cost_max_vocab_size = min(
len(self.word2id), self.config["lm_cost_max_vocab_size"])
target_ids = tf.where(
tf.greater_equal(target_ids, lm_cost_max_vocab_size - 1),
x=(lm_cost_max_vocab_size - 1) + tf.zeros_like(target_ids),
y=target_ids)
cost = 0.0
if lm_cost_type == "separate":
lm_cost_fw_mask = tf.sequence_mask(
sentence_lengths, maxlen=tf.shape(target_ids)[1])[:, 1:]
lm_cost_bw_mask = tf.sequence_mask(
sentence_lengths, maxlen=tf.shape(target_ids)[1])[:, :-1]
lm_cost_fw = self._construct_lm_cost(
input_tensor_fw[:, :-1, :],
lm_cost_max_vocab_size,
lm_cost_fw_mask,
target_ids[:, 1:],
name=name + "_fw")
lm_cost_bw = self._construct_lm_cost(
input_tensor_bw[:, 1:, :],
lm_cost_max_vocab_size,
lm_cost_bw_mask,
target_ids[:, :-1],
name=name + "_bw")
cost += lm_cost_fw + lm_cost_bw
elif lm_cost_type == "joint":
joint_input_tensor = tf.concat(
[input_tensor_fw[:, :-2, :], input_tensor_bw[:, 2:, :]], axis=-1)
lm_cost_mask = tf.sequence_mask(
sentence_lengths, maxlen=tf.shape(target_ids)[1])[:, 1:-1]
cost += self._construct_lm_cost(
joint_input_tensor,
lm_cost_max_vocab_size,
lm_cost_mask,
target_ids[:, 1:-1],
name=name + "_joint")
else:
raise ValueError("Unknown lm_cost_type: %s." % lm_cost_type)
return cost
def _construct_lm_cost(
self, input_tensor, lm_cost_max_vocab_size,
lm_cost_mask, target_ids, name):
with tf.variable_scope(name):
lm_cost_hidden_layer = tf.layers.dense(
inputs=input_tensor, units=self.config["lm_cost_hidden_layer_size"],
activation=tf.tanh, kernel_initializer=self.initializer)
lm_cost_output = tf.layers.dense(
inputs=lm_cost_hidden_layer, units=lm_cost_max_vocab_size,
kernel_initializer=self.initializer)
lm_cost_loss = tf.nn.sparse_softmax_cross_entropy_with_logits(
logits=lm_cost_output, labels=target_ids)
lm_cost_loss = tf.where(lm_cost_mask, lm_cost_loss, tf.zeros_like(lm_cost_loss))
return tf.reduce_sum(lm_cost_loss)
@staticmethod
def construct_optimizer(opt_strategy, loss, learning_rate, clip):
"""
Applies an optimization strategy to minimize the loss.
"""
if opt_strategy == "adadelta":
optimizer = tf.train.AdadeltaOptimizer(learning_rate=learning_rate)
elif opt_strategy == "adam":
optimizer = tf.train.AdamOptimizer(learning_rate=learning_rate)
elif opt_strategy == "sgd":
optimizer = tf.train.GradientDescentOptimizer(learning_rate=learning_rate)
else:
raise ValueError("Unknown optimisation strategy: %s." % opt_strategy)
if clip > 0.0:
grads, vs = zip(*optimizer.compute_gradients(loss))
grads, gnorm = tf.clip_by_global_norm(grads, clip)
train_op = optimizer.apply_gradients(zip(grads, vs))
else:
train_op = optimizer.minimize(loss)
return train_op
def preload_word_embeddings(self, embedding_path):
"""
Load the word embeddings in advance to get a feel
of the proportion of singletons in the dataset.
"""
loaded_embeddings = set()
embedding_matrix = self.session.run(self.word_embeddings)
with open(embedding_path) as f:
for line in f:
line_parts = line.strip().split()
if len(line_parts) <= 2:
continue
w = line_parts[0]
if self.config["lowercase"]:
w = w.lower()
if self.config["replace_digits"]:
w = re.sub(r'\d', '0', w)
if w in self.word2id and w not in loaded_embeddings:
word_id = self.word2id[w]
embedding = numpy.array(line_parts[1:])
embedding_matrix[word_id] = embedding
loaded_embeddings.add(w)
self.session.run(self.word_embeddings.assign(embedding_matrix))
print("No. of pre-loaded embeddings: %d." % len(loaded_embeddings))
@staticmethod
def translate2id(
token, token2id, unk_token=None, lowercase=False,
replace_digits=False, singletons=None, singletons_prob=0.0):
"""
Maps each token/character to its index.
"""
if lowercase:
token = token.lower()
if replace_digits:
token = re.sub(r'\d', '0', token)
if singletons and token in singletons \
and token in token2id and unk_token \
and numpy.random.uniform() < singletons_prob:
token_id = token2id[unk_token]
elif token in token2id:
token_id = token2id[token]
elif unk_token:
token_id = token2id[unk_token]
else:
raise ValueError("Unable to handle value, no UNK token: %s." % token)
return token_id
def create_input_dictionary_for_batch(self, batch, is_training, learning_rate):
"""
Creates the dictionary fed to the the TF model.
"""
sentence_lengths = numpy.array([len(sentence.tokens) for sentence in batch])
max_sentence_length = sentence_lengths.max()
max_word_length = numpy.array(
[numpy.array([len(token.value) for token in sentence.tokens]).max()
for sentence in batch]).max()
if 0 < self.config["allowed_word_length"] < max_word_length:
max_word_length = min(max_word_length, self.config["allowed_word_length"])
word_ids = numpy.zeros(
(len(batch), max_sentence_length), dtype=numpy.int32)
char_ids = numpy.zeros(
(len(batch), max_sentence_length, max_word_length), dtype=numpy.int32)
word_lengths = numpy.zeros(
(len(batch), max_sentence_length), dtype=numpy.int32)
word_labels = numpy.zeros(
(len(batch), max_sentence_length), dtype=numpy.float32)
sentence_labels = numpy.zeros(
(len(batch)), dtype=numpy.float32)
word_objective_weights = numpy.zeros(
(len(batch), max_sentence_length), dtype=numpy.float32)
sentence_objective_weights = numpy.zeros((len(batch)), dtype=numpy.float32)
# A proportion of the singletons are assigned to UNK (do this just for training).
singletons = self.singletons if is_training else None
singletons_prob = self.config["singletons_prob"] if is_training else 0.0
for i, sentence in enumerate(batch):
sentence_labels[i] = sentence.label_sent
if sentence_labels[i] != 0:
if self.config["sentence_objective_weights_non_default"] > 0.0:
sentence_objective_weights[i] = self.config[
"sentence_objective_weights_non_default"]
else:
sentence_objective_weights[i] = 1.0
else:
sentence_objective_weights[i] = 1.0
for j, token in enumerate(sentence.tokens):
word_ids[i][j] = self.translate2id(
token=token.value,
token2id=self.word2id,
unk_token=self.UNK,
lowercase=self.config["lowercase"],
replace_digits=self.config["replace_digits"],
singletons=singletons,
singletons_prob=singletons_prob)
word_labels[i][j] = token.label_tok
word_lengths[i][j] = len(token.value)
for k in range(min(len(token.value), max_word_length)):
char_ids[i][j][k] = self.translate2id(
token=token.value[k],
token2id=self.char2id,
unk_token=self.CUNK)
if token.enable_supervision is True:
word_objective_weights[i][j] = 1.0
input_dictionary = {
self.word_ids: word_ids,
self.char_ids: char_ids,
self.sentence_lengths: sentence_lengths,
self.word_lengths: word_lengths,
self.sentence_labels: sentence_labels,
self.word_labels: word_labels,
self.word_objective_weights: word_objective_weights,
self.sentence_objective_weights: sentence_objective_weights,
self.learning_rate: learning_rate,
self.is_training: is_training}
return input_dictionary
def process_batch(self, batch, is_training, learning_rate):
"""
Processes a batch of sentences.
:param batch: a set of sentences of size "max_batch_size".
:param is_training: whether the current batch is a training instance or not.
:param learning_rate: the pace at which learning should be performed.
:return: the cost, the sentence predictions, the sentence label distribution,
the token predictions and the token label distribution.
"""
feed_dict = self.create_input_dictionary_for_batch(batch, is_training, learning_rate)
cost, sentence_pred, sentence_prob, token_pred, token_prob = self.session.run(
[self.loss, self.sentence_predictions, self.sentence_probabilities,
self.token_predictions, self.token_probabilities] +
([self.train_op] if is_training else []), feed_dict=feed_dict)[:5]
return cost, sentence_pred, sentence_prob, token_pred, token_prob
def initialize_session(self):
"""
Initializes a tensorflow session and sets the random seed.
"""
tf.set_random_seed(self.config["random_seed"])
session_config = tf.ConfigProto()
session_config.gpu_options.allow_growth = self.config["tf_allow_growth"]
session_config.gpu_options.per_process_gpu_memory_fraction = self.config[
"tf_per_process_gpu_memory_fraction"]
self.session = tf.Session(config=session_config)
self.session.run(tf.global_variables_initializer())
self.saver = tf.train.Saver(max_to_keep=1)
@staticmethod
def get_parameter_count():
"""
Counts the total number of parameters.
"""
total_parameters = 0
for variable in tf.trainable_variables():
shape = variable.get_shape()
variable_parameters = 1
for dim in shape:
variable_parameters *= dim.value
total_parameters += variable_parameters
return total_parameters
def get_parameter_count_without_word_embeddings(self):
"""
Counts the number of parameters without those introduced by word embeddings.
"""
shape = self.word_embeddings.get_shape()
variable_parameters = 1
for dim in shape:
variable_parameters *= dim.value
return self.get_parameter_count() - variable_parameters
def save(self, filename):
"""
Saves a trained model to the path in filename.
"""
dump = dict()
dump["config"] = self.config
dump["label2id_sent"] = self.label2id_sent
dump["label2id_tok"] = self.label2id_tok
dump["UNK"] = self.UNK
dump["CUNK"] = self.CUNK
dump["word2id"] = self.word2id
dump["char2id"] = self.char2id
dump["singletons"] = self.singletons
dump["params"] = {}
for variable in tf.global_variables():
assert (
variable.name not in dump["params"]), \
"Error: variable with this name already exists: %s." % variable.name
dump["params"][variable.name] = self.session.run(variable)
with open(filename, 'wb') as f:
pickle.dump(dump, f, protocol=pickle.HIGHEST_PROTOCOL)
@staticmethod
def load(filename, new_config=None):
"""
Loads a pre-trained MHAL model.
"""
with open(filename, 'rb') as f:
dump = pickle.load(f)
dump["config"]["save"] = None
# Use the saved config, except for values that are present in the new config.
if new_config:
for key in new_config:
dump["config"][key] = new_config[key]
labeler = Model(dump["config"], dump["label2id_sent"], dump["label2id_tok"])
labeler.UNK = dump["UNK"]
labeler.CUNK = dump["CUNK"]
labeler.word2id = dump["word2id"]
labeler.char2id = dump["char2id"]
labeler.singletons = dump["singletons"]
labeler.construct_network()
labeler.initialize_session()
labeler.load_params(filename)
return labeler
def load_params(self, filename):
"""
Loads the parameters of a trained model.
"""
with open(filename, 'rb') as f:
dump = pickle.load(f)
for variable in tf.global_variables():
assert (variable.name in dump["params"]), \
"Variable not in dump: %s." % variable.name
assert (variable.shape == dump["params"][variable.name].shape), \
"Variable shape not as expected: %s, of shape %s. %s" % (
variable.name, str(variable.shape),
str(dump["params"][variable.name].shape))
value = numpy.asarray(dump["params"][variable.name])
self.session.run(variable.assign(value))