model_utils.py 4.51 KB
Newer Older
Katherine Wu's avatar
Katherine Wu committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Copyright 2018 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.
# ==============================================================================
"""Transformer model helper methods."""

from __future__ import absolute_import
from __future__ import division
from __future__ import print_function

import math

23
import numpy as np
Katherine Wu's avatar
Katherine Wu committed
24
25
import tensorflow as tf

26
27
28
29
# Very low numbers to represent -infinity. We do not actually use -Inf, since we
# want to be able to multiply these values by zero to get zero. (-Inf * 0 = NaN)
_NEG_INF_FP32 = -1e9
_NEG_INF_FP16 = np.finfo(np.float16).min
Katherine Wu's avatar
Katherine Wu committed
30
31


Hongkun Yu's avatar
Hongkun Yu committed
32
33
34
35
def get_position_encoding(length,
                          hidden_size,
                          min_timescale=1.0,
                          max_timescale=1.0e4):
Katherine Wu's avatar
Katherine Wu committed
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
  """Return positional encoding.

  Calculates the position encoding as a mix of sine and cosine functions with
  geometrically increasing wavelengths.
  Defined and formulized in Attention is All You Need, section 3.5.

  Args:
    length: Sequence length.
    hidden_size: Size of the
    min_timescale: Minimum scale that will be applied at each position
    max_timescale: Maximum scale that will be applied at each position

  Returns:
    Tensor with shape [length, hidden_size]
  """
51
52
53
  # We compute the positional encoding in float32 even if the model uses
  # float16, as many of the ops used, like log and exp, are numerically unstable
  # in float16.
54
  position = tf.cast(tf.range(length), tf.float32)
Katherine Wu's avatar
Katherine Wu committed
55
56
57
  num_timescales = hidden_size // 2
  log_timescale_increment = (
      math.log(float(max_timescale) / float(min_timescale)) /
58
      (tf.cast(num_timescales, tf.float32) - 1))
Katherine Wu's avatar
Katherine Wu committed
59
  inv_timescales = min_timescale * tf.exp(
60
      tf.cast(tf.range(num_timescales), tf.float32) * -log_timescale_increment)
Katherine Wu's avatar
Katherine Wu committed
61
62
63
64
65
  scaled_time = tf.expand_dims(position, 1) * tf.expand_dims(inv_timescales, 0)
  signal = tf.concat([tf.sin(scaled_time), tf.cos(scaled_time)], axis=1)
  return signal


66
def get_decoder_self_attention_bias(length, dtype=tf.float32):
Katherine Wu's avatar
Katherine Wu committed
67
68
69
70
71
72
73
74
  """Calculate bias for decoder that maintains model's autoregressive property.

  Creates a tensor that masks out locations that correspond to illegal
  connections, so prediction at position i cannot draw information from future
  positions.

  Args:
    length: int length of sequences in batch.
75
    dtype: The dtype of the return value.
Katherine Wu's avatar
Katherine Wu committed
76
77
78
79

  Returns:
    float tensor of shape [1, 1, length, length]
  """
80
  neg_inf = _NEG_INF_FP16 if dtype == tf.float16 else _NEG_INF_FP32
Katherine Wu's avatar
Katherine Wu committed
81
  with tf.name_scope("decoder_self_attention_bias"):
Hongkun Yu's avatar
Hongkun Yu committed
82
83
    valid_locs = tf.linalg.band_part(
        tf.ones([length, length], dtype=dtype), -1, 0)
Katherine Wu's avatar
Katherine Wu committed
84
    valid_locs = tf.reshape(valid_locs, [1, 1, length, length])
85
    decoder_bias = neg_inf * (1.0 - valid_locs)
Katherine Wu's avatar
Katherine Wu committed
86
87
88
  return decoder_bias


89
def get_padding(x, padding_value=0, dtype=tf.float32):
Katherine Wu's avatar
Katherine Wu committed
90
91
92
93
  """Return float tensor representing the padding values in x.

  Args:
    x: int tensor with any shape
A. Unique TensorFlower's avatar
A. Unique TensorFlower committed
94
    padding_value: int which represents padded values in input
95
    dtype: The dtype of the return value.
Katherine Wu's avatar
Katherine Wu committed
96
97

  Returns:
Songyi Blair Han's avatar
Songyi Blair Han committed
98
    float tensor with same shape as x containing values 0 or 1.
Katherine Wu's avatar
Katherine Wu committed
99
100
101
      0 -> non-padding, 1 -> padding
  """
  with tf.name_scope("padding"):
102
    return tf.cast(tf.equal(x, padding_value), dtype)
Katherine Wu's avatar
Katherine Wu committed
103
104


A. Unique TensorFlower's avatar
A. Unique TensorFlower committed
105
def get_padding_bias(x, padding_value=0, dtype=tf.float32):
Katherine Wu's avatar
Katherine Wu committed
106
107
108
109
110
111
112
113
  """Calculate bias tensor from padding values in tensor.

  Bias tensor that is added to the pre-softmax multi-headed attention logits,
  which has shape [batch_size, num_heads, length, length]. The tensor is zero at
  non-padding locations, and -1e9 (negative infinity) at padding locations.

  Args:
    x: int tensor with shape [batch_size, length]
A. Unique TensorFlower's avatar
A. Unique TensorFlower committed
114
115
    padding_value: int which represents padded values in input
    dtype: The dtype of the return value
Katherine Wu's avatar
Katherine Wu committed
116
117
118
119
120

  Returns:
    Attention bias tensor of shape [batch_size, 1, 1, length].
  """
  with tf.name_scope("attention_bias"):
A. Unique TensorFlower's avatar
A. Unique TensorFlower committed
121
    padding = get_padding(x, padding_value, dtype)
122
    attention_bias = padding * _NEG_INF_FP32
Katherine Wu's avatar
Katherine Wu committed
123
124
125
    attention_bias = tf.expand_dims(
        tf.expand_dims(attention_bias, axis=1), axis=1)
  return attention_bias