forked from laxmimerit/NLP-Models-Tensorflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
modeling.py
1127 lines (984 loc) · 32.7 KB
/
modeling.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
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
import numpy as np
import tensorflow as tf
def gelu(x):
"""Gaussian Error Linear Unit.
This is a smoother version of the RELU.
Original paper: https://arxiv.org/abs/1606.08415
Args:
x: float Tensor to perform activation.
Returns:
`x` with the GELU activation applied.
"""
cdf = 0.5 * (
1.0 + tf.tanh((np.sqrt(2 / np.pi) * (x + 0.044715 * tf.pow(x, 3))))
)
return x * cdf
def embedding_lookup(
x,
n_token,
d_embed,
initializer,
use_tpu = True,
scope = 'embedding',
reuse = None,
dtype = tf.float32,
):
"""TPU and GPU embedding_lookup function."""
with tf.variable_scope(scope, reuse = reuse):
lookup_table = tf.get_variable(
'lookup_table',
[n_token, d_embed],
dtype = dtype,
initializer = initializer,
)
if use_tpu:
one_hot_idx = tf.one_hot(x, n_token, dtype = dtype)
if one_hot_idx.shape.ndims == 2:
return (
tf.einsum('in,nd->id', one_hot_idx, lookup_table),
lookup_table,
)
else:
return (
tf.einsum('ibn,nd->ibd', one_hot_idx, lookup_table),
lookup_table,
)
else:
return tf.nn.embedding_lookup(lookup_table, x), lookup_table
def positional_embedding(pos_seq, inv_freq, bsz = None):
sinusoid_inp = tf.einsum('i,d->id', pos_seq, inv_freq)
pos_emb = tf.concat([tf.sin(sinusoid_inp), tf.cos(sinusoid_inp)], -1)
pos_emb = pos_emb[:, None, :]
if bsz is not None:
pos_emb = tf.tile(pos_emb, [1, bsz, 1])
return pos_emb
def positionwise_ffn(
inp,
d_model,
d_inner,
dropout,
kernel_initializer,
activation_type = 'relu',
scope = 'ff',
is_training = True,
reuse = None,
):
"""Position-wise Feed-forward Network."""
if activation_type == 'relu':
activation = tf.nn.relu
elif activation_type == 'gelu':
activation = gelu
else:
raise ValueError(
'Unsupported activation type {}'.format(activation_type)
)
output = inp
with tf.variable_scope(scope, reuse = reuse):
output = tf.layers.dense(
output,
d_inner,
activation = activation,
kernel_initializer = kernel_initializer,
name = 'layer_1',
)
output = tf.layers.dropout(
output, dropout, training = is_training, name = 'drop_1'
)
output = tf.layers.dense(
output,
d_model,
kernel_initializer = kernel_initializer,
name = 'layer_2',
)
output = tf.layers.dropout(
output, dropout, training = is_training, name = 'drop_2'
)
output = tf.contrib.layers.layer_norm(
output + inp, begin_norm_axis = -1, scope = 'LayerNorm'
)
return output
def head_projection(h, d_model, n_head, d_head, kernel_initializer, name):
"""Project hidden states to a specific head with a 4D-shape."""
proj_weight = tf.get_variable(
'{}/kernel'.format(name),
[d_model, n_head, d_head],
dtype = h.dtype,
initializer = kernel_initializer,
)
head = tf.einsum('ibh,hnd->ibnd', h, proj_weight)
return head
def post_attention(
h,
attn_vec,
d_model,
n_head,
d_head,
dropout,
is_training,
kernel_initializer,
residual = True,
):
"""Post-attention processing."""
# post-attention projection (back to `d_model`)
proj_o = tf.get_variable(
'o/kernel',
[d_model, n_head, d_head],
dtype = h.dtype,
initializer = kernel_initializer,
)
attn_out = tf.einsum('ibnd,hnd->ibh', attn_vec, proj_o)
attn_out = tf.layers.dropout(attn_out, dropout, training = is_training)
if residual:
output = tf.contrib.layers.layer_norm(
attn_out + h, begin_norm_axis = -1, scope = 'LayerNorm'
)
else:
output = tf.contrib.layers.layer_norm(
attn_out, begin_norm_axis = -1, scope = 'LayerNorm'
)
return output
def abs_attn_core(
q_head, k_head, v_head, attn_mask, dropatt, is_training, scale
):
"""Core absolute positional attention operations."""
attn_score = tf.einsum('ibnd,jbnd->ijbn', q_head, k_head)
attn_score *= scale
if attn_mask is not None:
attn_score = attn_score - 1e30 * attn_mask
# attention probability
attn_prob = tf.nn.softmax(attn_score, 1)
attn_prob = tf.layers.dropout(attn_prob, dropatt, training = is_training)
# attention output
attn_vec = tf.einsum('ijbn,jbnd->ibnd', attn_prob, v_head)
return attn_vec
def rel_attn_core(
q_head,
k_head_h,
v_head_h,
k_head_r,
seg_embed,
seg_mat,
r_w_bias,
r_r_bias,
r_s_bias,
attn_mask,
dropatt,
is_training,
scale,
):
"""Core relative positional attention operations."""
# content based attention score
ac = tf.einsum('ibnd,jbnd->ijbn', q_head + r_w_bias, k_head_h)
# position based attention score
bd = tf.einsum('ibnd,jbnd->ijbn', q_head + r_r_bias, k_head_r)
bd = rel_shift(bd, klen = tf.shape(ac)[1])
# segment based attention score
if seg_mat is None:
ef = 0
else:
ef = tf.einsum('ibnd,snd->ibns', q_head + r_s_bias, seg_embed)
ef = tf.einsum('ijbs,ibns->ijbn', seg_mat, ef)
# merge attention scores and perform masking
attn_score = (ac + bd + ef) * scale
if attn_mask is not None:
# attn_score = attn_score * (1 - attn_mask) - 1e30 * attn_mask
attn_score = attn_score - 1e30 * attn_mask
# attention probability
attn_prob = tf.nn.softmax(attn_score, 1)
attn_prob = tf.layers.dropout(attn_prob, dropatt, training = is_training)
# attention output
attn_vec = tf.einsum('ijbn,jbnd->ibnd', attn_prob, v_head_h)
return attn_vec
def rel_shift(x, klen = -1):
"""perform relative shift to form the relative attention score."""
x_size = tf.shape(x)
x = tf.reshape(x, [x_size[1], x_size[0], x_size[2], x_size[3]])
x = tf.slice(x, [1, 0, 0, 0], [-1, -1, -1, -1])
x = tf.reshape(x, [x_size[0], x_size[1] - 1, x_size[2], x_size[3]])
x = tf.slice(x, [0, 0, 0, 0], [-1, klen, -1, -1])
return x
def _create_mask(qlen, mlen, dtype = tf.float32, same_length = False):
"""create causal attention mask."""
attn_mask = tf.ones([qlen, qlen], dtype = dtype)
mask_u = tf.matrix_band_part(attn_mask, 0, -1)
mask_dia = tf.matrix_band_part(attn_mask, 0, 0)
attn_mask_pad = tf.zeros([qlen, mlen], dtype = dtype)
ret = tf.concat([attn_mask_pad, mask_u - mask_dia], 1)
if same_length:
mask_l = tf.matrix_band_part(attn_mask, -1, 0)
ret = tf.concat([ret[:, :qlen] + mask_l - mask_dia, ret[:, qlen:]], 1)
return ret
def _cache_mem(curr_out, prev_mem, mem_len, reuse_len = None):
"""cache hidden states into memory."""
if mem_len is None or mem_len == 0:
return None
else:
if reuse_len is not None and reuse_len > 0:
curr_out = curr_out[:reuse_len]
if prev_mem is None:
new_mem = curr_out[-mem_len:]
else:
new_mem = tf.concat([prev_mem, curr_out], 0)[-mem_len:]
return tf.stop_gradient(new_mem)
def relative_positional_encoding(
qlen, klen, d_model, clamp_len, attn_type, bi_data, bsz = None, dtype = None
):
"""create relative positional encoding."""
freq_seq = tf.range(0, d_model, 2.0)
if dtype is not None and dtype != tf.float32:
freq_seq = tf.cast(freq_seq, dtype = dtype)
inv_freq = 1 / (10000 ** (freq_seq / d_model))
if attn_type == 'bi':
# beg, end = klen - 1, -qlen
beg, end = klen, -qlen
elif attn_type == 'uni':
# beg, end = klen - 1, -1
beg, end = klen, -1
else:
raise ValueError('Unknown `attn_type` {}.'.format(attn_type))
if bi_data:
fwd_pos_seq = tf.range(beg, end, -1.0)
bwd_pos_seq = tf.range(-beg, -end, 1.0)
if dtype is not None and dtype != tf.float32:
fwd_pos_seq = tf.cast(fwd_pos_seq, dtype = dtype)
bwd_pos_seq = tf.cast(bwd_pos_seq, dtype = dtype)
if clamp_len > 0:
fwd_pos_seq = tf.clip_by_value(fwd_pos_seq, -clamp_len, clamp_len)
bwd_pos_seq = tf.clip_by_value(bwd_pos_seq, -clamp_len, clamp_len)
if bsz is not None:
# With bi_data, the batch size should be divisible by 2.
assert bsz % 2 == 0
fwd_pos_emb = positional_embedding(fwd_pos_seq, inv_freq, bsz // 2)
bwd_pos_emb = positional_embedding(bwd_pos_seq, inv_freq, bsz // 2)
else:
fwd_pos_emb = positional_embedding(fwd_pos_seq, inv_freq)
bwd_pos_emb = positional_embedding(bwd_pos_seq, inv_freq)
pos_emb = tf.concat([fwd_pos_emb, bwd_pos_emb], axis = 1)
else:
fwd_pos_seq = tf.range(beg, end, -1.0)
if dtype is not None and dtype != tf.float32:
fwd_pos_seq = tf.cast(fwd_pos_seq, dtype = dtype)
if clamp_len > 0:
fwd_pos_seq = tf.clip_by_value(fwd_pos_seq, -clamp_len, clamp_len)
pos_emb = positional_embedding(fwd_pos_seq, inv_freq, bsz)
return pos_emb
def multihead_attn(
q,
k,
v,
attn_mask,
d_model,
n_head,
d_head,
dropout,
dropatt,
is_training,
kernel_initializer,
residual = True,
scope = 'abs_attn',
reuse = None,
):
"""Standard multi-head attention with absolute positional embedding."""
scale = 1 / (d_head ** 0.5)
with tf.variable_scope(scope, reuse = reuse):
# attention heads
q_head = head_projection(
q, d_model, n_head, d_head, kernel_initializer, 'q'
)
k_head = head_projection(
k, d_model, n_head, d_head, kernel_initializer, 'k'
)
v_head = head_projection(
v, d_model, n_head, d_head, kernel_initializer, 'v'
)
# attention vector
attn_vec = abs_attn_core(
q_head, k_head, v_head, attn_mask, dropatt, is_training, scale
)
# post processing
output = post_attention(
v,
attn_vec,
d_model,
n_head,
d_head,
dropout,
is_training,
kernel_initializer,
residual,
)
return output
def rel_multihead_attn(
h,
r,
r_w_bias,
r_r_bias,
seg_mat,
r_s_bias,
seg_embed,
attn_mask,
mems,
d_model,
n_head,
d_head,
dropout,
dropatt,
is_training,
kernel_initializer,
scope = 'rel_attn',
reuse = None,
):
"""Multi-head attention with relative positional encoding."""
scale = 1 / (d_head ** 0.5)
with tf.variable_scope(scope, reuse = reuse):
if mems is not None and mems.shape.ndims > 1:
cat = tf.concat([mems, h], 0)
else:
cat = h
# content heads
q_head_h = head_projection(
h, d_model, n_head, d_head, kernel_initializer, 'q'
)
k_head_h = head_projection(
cat, d_model, n_head, d_head, kernel_initializer, 'k'
)
v_head_h = head_projection(
cat, d_model, n_head, d_head, kernel_initializer, 'v'
)
# positional heads
k_head_r = head_projection(
r, d_model, n_head, d_head, kernel_initializer, 'r'
)
# core attention ops
attn_vec = rel_attn_core(
q_head_h,
k_head_h,
v_head_h,
k_head_r,
seg_embed,
seg_mat,
r_w_bias,
r_r_bias,
r_s_bias,
attn_mask,
dropatt,
is_training,
scale,
)
# post processing
output = post_attention(
h,
attn_vec,
d_model,
n_head,
d_head,
dropout,
is_training,
kernel_initializer,
)
return output
def two_stream_rel_attn(
h,
g,
r,
mems,
r_w_bias,
r_r_bias,
seg_mat,
r_s_bias,
seg_embed,
attn_mask_h,
attn_mask_g,
target_mapping,
d_model,
n_head,
d_head,
dropout,
dropatt,
is_training,
kernel_initializer,
scope = 'rel_attn',
):
"""Two-stream attention with relative positional encoding."""
scale = 1 / (d_head ** 0.5)
with tf.variable_scope(scope, reuse = False):
# content based attention score
if mems is not None and mems.shape.ndims > 1:
cat = tf.concat([mems, h], 0)
else:
cat = h
# content-based key head
k_head_h = head_projection(
cat, d_model, n_head, d_head, kernel_initializer, 'k'
)
# content-based value head
v_head_h = head_projection(
cat, d_model, n_head, d_head, kernel_initializer, 'v'
)
# position-based key head
k_head_r = head_projection(
r, d_model, n_head, d_head, kernel_initializer, 'r'
)
##### h-stream
# content-stream query head
q_head_h = head_projection(
h, d_model, n_head, d_head, kernel_initializer, 'q'
)
# core attention ops
attn_vec_h = rel_attn_core(
q_head_h,
k_head_h,
v_head_h,
k_head_r,
seg_embed,
seg_mat,
r_w_bias,
r_r_bias,
r_s_bias,
attn_mask_h,
dropatt,
is_training,
scale,
)
# post processing
output_h = post_attention(
h,
attn_vec_h,
d_model,
n_head,
d_head,
dropout,
is_training,
kernel_initializer,
)
with tf.variable_scope(scope, reuse = True):
##### g-stream
# query-stream query head
q_head_g = head_projection(
g, d_model, n_head, d_head, kernel_initializer, 'q'
)
# core attention ops
if target_mapping is not None:
q_head_g = tf.einsum('mbnd,mlb->lbnd', q_head_g, target_mapping)
attn_vec_g = rel_attn_core(
q_head_g,
k_head_h,
v_head_h,
k_head_r,
seg_embed,
seg_mat,
r_w_bias,
r_r_bias,
r_s_bias,
attn_mask_g,
dropatt,
is_training,
scale,
)
attn_vec_g = tf.einsum('lbnd,mlb->mbnd', attn_vec_g, target_mapping)
else:
attn_vec_g = rel_attn_core(
q_head_g,
k_head_h,
v_head_h,
k_head_r,
seg_embed,
seg_mat,
r_w_bias,
r_r_bias,
r_s_bias,
attn_mask_g,
dropatt,
is_training,
scale,
)
# post processing
output_g = post_attention(
g,
attn_vec_g,
d_model,
n_head,
d_head,
dropout,
is_training,
kernel_initializer,
)
return output_h, output_g
def transformer_xl(
inp_k,
n_token,
n_layer,
d_model,
n_head,
d_head,
d_inner,
dropout,
dropatt,
attn_type,
bi_data,
initializer,
is_training,
mem_len = None,
inp_q = None,
mems = None,
same_length = False,
clamp_len = -1,
untie_r = False,
use_tpu = True,
input_mask = None,
perm_mask = None,
seg_id = None,
reuse_len = None,
ff_activation = 'relu',
target_mapping = None,
use_bfloat16 = False,
scope = 'transformer',
**kwargs
):
"""
Defines a Transformer-XL computation graph with additional
support for XLNet.
Args:
inp_k: int32 Tensor in shape [len, bsz], the input token IDs.
seg_id: int32 Tensor in shape [len, bsz], the input segment IDs.
input_mask: float32 Tensor in shape [len, bsz], the input mask.
0 for real tokens and 1 for padding.
mems: a list of float32 Tensors in shape [mem_len, bsz, d_model], memory
from previous batches. The length of the list equals n_layer.
If None, no memory is used.
perm_mask: float32 Tensor in shape [len, len, bsz].
If perm_mask[i, j, k] = 0, i attend to j in batch k;
if perm_mask[i, j, k] = 1, i does not attend to j in batch k.
If None, each position attends to all the others.
target_mapping: float32 Tensor in shape [num_predict, len, bsz].
If target_mapping[i, j, k] = 1, the i-th predict in batch k is
on the j-th token.
Only used during pretraining for partial prediction.
Set to None during finetuning.
inp_q: float32 Tensor in shape [len, bsz].
1 for tokens with losses and 0 for tokens without losses.
Only used during pretraining for two-stream attention.
Set to None during finetuning.
n_layer: int, the number of layers.
d_model: int, the hidden size.
n_head: int, the number of attention heads.
d_head: int, the dimension size of each attention head.
d_inner: int, the hidden size in feed-forward layers.
ff_activation: str, "relu" or "gelu".
untie_r: bool, whether to untie the biases in attention.
n_token: int, the vocab size.
is_training: bool, whether in training mode.
use_tpu: bool, whether TPUs are used.
use_bfloat16: bool, use bfloat16 instead of float32.
dropout: float, dropout rate.
dropatt: float, dropout rate on attention probabilities.
init: str, the initialization scheme, either "normal" or "uniform".
init_range: float, initialize the parameters with a uniform distribution
in [-init_range, init_range]. Only effective when init="uniform".
init_std: float, initialize the parameters with a normal distribution
with mean 0 and stddev init_std. Only effective when init="normal".
mem_len: int, the number of tokens to cache.
reuse_len: int, the number of tokens in the currect batch to be cached
and reused in the future.
bi_data: bool, whether to use bidirectional input pipeline.
Usually set to True during pretraining and False during finetuning.
clamp_len: int, clamp all relative distances larger than clamp_len.
-1 means no clamping.
same_length: bool, whether to use the same attention length for each token.
summary_type: str, "last", "first", "mean", or "attn". The method
to pool the input to get a vector representation.
initializer: A tf initializer.
scope: scope name for the computation graph.
"""
tf.logging.info('memory input {}'.format(mems))
tf_float = tf.bfloat16 if use_bfloat16 else tf.float32
tf.logging.info('Use float type {}'.format(tf_float))
new_mems = []
with tf.variable_scope(scope):
if untie_r:
r_w_bias = tf.get_variable(
'r_w_bias',
[n_layer, n_head, d_head],
dtype = tf_float,
initializer = initializer,
)
r_r_bias = tf.get_variable(
'r_r_bias',
[n_layer, n_head, d_head],
dtype = tf_float,
initializer = initializer,
)
else:
r_w_bias = tf.get_variable(
'r_w_bias',
[n_head, d_head],
dtype = tf_float,
initializer = initializer,
)
r_r_bias = tf.get_variable(
'r_r_bias',
[n_head, d_head],
dtype = tf_float,
initializer = initializer,
)
bsz = tf.shape(inp_k)[1]
qlen = tf.shape(inp_k)[0]
mlen = tf.shape(mems[0])[0] if mems is not None else 0
klen = mlen + qlen
##### Attention mask
# causal attention mask
if attn_type == 'uni':
attn_mask = _create_mask(qlen, mlen, tf_float, same_length)
attn_mask = attn_mask[:, :, None, None]
elif attn_type == 'bi':
attn_mask = None
else:
raise ValueError('Unsupported attention type: {}'.format(attn_type))
# data mask: input mask & perm mask
if input_mask is not None and perm_mask is not None:
data_mask = input_mask[None] + perm_mask
elif input_mask is not None and perm_mask is None:
data_mask = input_mask[None]
elif input_mask is None and perm_mask is not None:
data_mask = perm_mask
else:
data_mask = None
if data_mask is not None:
# all mems can be attended to
mems_mask = tf.zeros(
[tf.shape(data_mask)[0], mlen, bsz], dtype = tf_float
)
data_mask = tf.concat([mems_mask, data_mask], 1)
if attn_mask is None:
attn_mask = data_mask[:, :, :, None]
else:
attn_mask += data_mask[:, :, :, None]
if attn_mask is not None:
attn_mask = tf.cast(attn_mask > 0, dtype = tf_float)
if attn_mask is not None:
non_tgt_mask = -tf.eye(qlen, dtype = tf_float)
non_tgt_mask = tf.concat(
[tf.zeros([qlen, mlen], dtype = tf_float), non_tgt_mask],
axis = -1,
)
non_tgt_mask = tf.cast(
(attn_mask + non_tgt_mask[:, :, None, None]) > 0,
dtype = tf_float,
)
else:
non_tgt_mask = None
##### Word embedding
word_emb_k, lookup_table = embedding_lookup(
x = inp_k,
n_token = n_token,
d_embed = d_model,
initializer = initializer,
use_tpu = use_tpu,
dtype = tf_float,
scope = 'word_embedding',
)
if inp_q is not None:
with tf.variable_scope('mask_emb'):
mask_emb = tf.get_variable(
'mask_emb', [1, 1, d_model], dtype = tf_float
)
if target_mapping is not None:
word_emb_q = tf.tile(
mask_emb, [tf.shape(target_mapping)[0], bsz, 1]
)
else:
inp_q_ext = inp_q[:, :, None]
word_emb_q = (
inp_q_ext * mask_emb + (1 - inp_q_ext) * word_emb_k
)
output_h = tf.layers.dropout(
word_emb_k, dropout, training = is_training
)
if inp_q is not None:
output_g = tf.layers.dropout(
word_emb_q, dropout, training = is_training
)
##### Segment embedding
if seg_id is not None:
if untie_r:
r_s_bias = tf.get_variable(
'r_s_bias',
[n_layer, n_head, d_head],
dtype = tf_float,
initializer = initializer,
)
else:
# default case (tie)
r_s_bias = tf.get_variable(
'r_s_bias',
[n_head, d_head],
dtype = tf_float,
initializer = initializer,
)
seg_embed = tf.get_variable(
'seg_embed',
[n_layer, 2, n_head, d_head],
dtype = tf_float,
initializer = initializer,
)
# Convert `seg_id` to one-hot `seg_mat`
mem_pad = tf.zeros([mlen, bsz], dtype = tf.int32)
cat_ids = tf.concat([mem_pad, seg_id], 0)
# `1` indicates not in the same segment [qlen x klen x bsz]
seg_mat = tf.cast(
tf.logical_not(tf.equal(seg_id[:, None], cat_ids[None, :])),
tf.int32,
)
seg_mat = tf.one_hot(seg_mat, 2, dtype = tf_float)
else:
seg_mat = None
##### Positional encoding
pos_emb = relative_positional_encoding(
qlen,
klen,
d_model,
clamp_len,
attn_type,
bi_data,
bsz = bsz,
dtype = tf_float,
)
pos_emb = tf.layers.dropout(pos_emb, dropout, training = is_training)
##### Attention layers
if mems is None:
mems = [None] * n_layer
for i in range(n_layer):
# cache new mems
new_mems.append(_cache_mem(output_h, mems[i], mem_len, reuse_len))
# segment bias
if seg_id is None:
r_s_bias_i = None
seg_embed_i = None
else:
r_s_bias_i = r_s_bias if not untie_r else r_s_bias[i]
seg_embed_i = seg_embed[i]
with tf.variable_scope('layer_{}'.format(i)):
if inp_q is not None:
output_h, output_g = two_stream_rel_attn(
h = output_h,
g = output_g,
r = pos_emb,
r_w_bias = r_w_bias if not untie_r else r_w_bias[i],
r_r_bias = r_r_bias if not untie_r else r_r_bias[i],
seg_mat = seg_mat,
r_s_bias = r_s_bias_i,
seg_embed = seg_embed_i,
attn_mask_h = non_tgt_mask,
attn_mask_g = attn_mask,
mems = mems[i],
target_mapping = target_mapping,
d_model = d_model,
n_head = n_head,
d_head = d_head,
dropout = dropout,
dropatt = dropatt,
is_training = is_training,
kernel_initializer = initializer,
)
reuse = True
else:
reuse = False
output_h = rel_multihead_attn(
h = output_h,
r = pos_emb,
r_w_bias = r_w_bias if not untie_r else r_w_bias[i],
r_r_bias = r_r_bias if not untie_r else r_r_bias[i],
seg_mat = seg_mat,
r_s_bias = r_s_bias_i,
seg_embed = seg_embed_i,
attn_mask = non_tgt_mask,
mems = mems[i],
d_model = d_model,
n_head = n_head,
d_head = d_head,
dropout = dropout,
dropatt = dropatt,
is_training = is_training,
kernel_initializer = initializer,
reuse = reuse,
)
if inp_q is not None:
output_g = positionwise_ffn(
inp = output_g,
d_model = d_model,
d_inner = d_inner,
dropout = dropout,
kernel_initializer = initializer,
activation_type = ff_activation,
is_training = is_training,
)
output_h = positionwise_ffn(
inp = output_h,
d_model = d_model,
d_inner = d_inner,
dropout = dropout,
kernel_initializer = initializer,
activation_type = ff_activation,
is_training = is_training,
reuse = reuse,
)
if inp_q is not None:
output = tf.layers.dropout(
output_g, dropout, training = is_training
)
else:
output = tf.layers.dropout(
output_h, dropout, training = is_training
)
return output, new_mems, lookup_table
def lm_loss(
hidden,
target,
n_token,
d_model,
initializer,
lookup_table = None,
tie_weight = False,
bi_data = True,
use_tpu = False,
):
"""doc."""
with tf.variable_scope('lm_loss'):
if tie_weight:
assert (
lookup_table is not None
), 'lookup_table cannot be None for tie_weight'
softmax_w = lookup_table
else:
softmax_w = tf.get_variable(
'weight',
[n_token, d_model],
dtype = hidden.dtype,
initializer = initializer,
)
softmax_b = tf.get_variable(
'bias',
[n_token],
dtype = hidden.dtype,
initializer = tf.zeros_initializer(),
)
logits = tf.einsum('ibd,nd->ibn', hidden, softmax_w) + softmax_b
if use_tpu:
one_hot_target = tf.one_hot(target, n_token, dtype = logits.dtype)
loss = -tf.reduce_sum(
tf.nn.log_softmax(logits) * one_hot_target, -1
)
else:
loss = tf.nn.sparse_softmax_cross_entropy_with_logits(
labels = target, logits = logits
)
return loss