当前位置:   article > 正文

Bert核心代码解读_type_vocab_size

type_vocab_size

前面已经介绍了如何先测试一个bert任务,对这方面还不了解的可以看一下前面的博客。

BERT 最主要的模型实现部分---BertModel,代码位于

  • modeling.py 模块

为了便于理解,下面的代码中的batch_size假设成8,seq_length长度是128,每个词编码后的向量纬度是768。

配置类(BertConfig)

  1. class BertConfig(object):
  2. """BERT模型的配置类."""
  3. def __init__(self,
  4. vocab_size,
  5. hidden_size=768,
  6. num_hidden_layers=12,
  7. num_attention_heads=12,
  8. intermediate_size=3072,
  9. hidden_act="gelu",
  10. hidden_dropout_prob=0.1,
  11. attention_probs_dropout_prob=0.1,
  12. max_position_embeddings=512,
  13. type_vocab_size=16,
  14. initializer_range=0.02):
  15. self.vocab_size = vocab_size
  16. self.hidden_size = hidden_size
  17. self.num_hidden_layers = num_hidden_layers
  18. self.num_attention_heads = num_attention_heads
  19. self.hidden_act = hidden_act
  20. self.intermediate_size = intermediate_size
  21. self.hidden_dropout_prob = hidden_dropout_prob
  22. self.attention_probs_dropout_prob = attention_probs_dropout_prob
  23. self.max_position_embeddings = max_position_embeddings
  24. self.type_vocab_size = type_vocab_size
  25. self.initializer_range = initializer_range
  26. @classmethod
  27. def from_dict(cls, json_object):
  28. """Constructs a `BertConfig` from a Python dictionary of parameters."""
  29. config = BertConfig(vocab_size=None)
  30. for (key, value) in six.iteritems(json_object):
  31. config.__dict__[key] = value
  32. return config
  33. @classmethod
  34. def from_json_file(cls, json_file):
  35. """Constructs a `BertConfig` from a json file of parameters."""
  36. with tf.gfile.GFile(json_file, "r") as reader:
  37. text = reader.read()
  38. return cls.from_dict(json.loads(text))
  39. def to_dict(self):
  40. """Serializes this instance to a Python dictionary."""
  41. output = copy.deepcopy(self.__dict__)
  42. return output
  43. def to_json_string(self):
  44. """Serializes this instance to a JSON string."""
  45. return json.dumps(self.to_dict(), indent=2, sort_keys=True) + "\n"

参数的定义:

  • vocab_size:词表大小

  • hidden_size:隐藏层神经元数

  • num_hidden_layers:Transformer encoder 中的隐藏层数

  • *num_attention_heads:*multi-head attention 的 head 数

  • intermediate_size:encoder 的“中间”隐层神经元数(例如 feed-forward layer

  • hidden_act:隐藏层激活函数

  • hidden_dropout_prob:隐层 dropout 率

  • attention_probs_dropout_prob:注意力部分的 dropout

  • max_position_embeddings:最大位置编码

  • type_vocab_size:token_type_ids 的词典大小

  • initializer_range:truncated_normal_initializer 初始化方法的 stdev

这里要注意一点,可能刚看的时候对type_vocab_size这个参数会有点不理解,其实就是在next sentence prediction任务里的Segment A和 Segment B。在下载的bert_config.json文件里也有说明,默认值应该为 2。

函数入口(init)

上面看完了类的定义后,这个文件的主要代码在BertModel里面,我们来看一下BertModel 类的构造函数。

  1. def __init__(self,
  2. config, # BertConfig对象
  3. is_training,
  4. input_ids, # 【batch_size, seq_length
  5. input_mask=None, # 【batch_size, seq_length
  6. token_type_ids=None, # 【batch_size, seq_length
  7. use_one_hot_embeddings=False, # 是否使用one-hot;否则tf.gather()
  8. scope=None):
  9. config = copy.deepcopy(config)
  10. if not is_training:
  11. config.hidden_dropout_prob = 0.0
  12. config.attention_probs_dropout_prob = 0.0
  13. input_shape = get_shape_list(input_ids, expected_rank=2)
  14. batch_size = input_shape[0]
  15. seq_length = input_shape[1]
  16. # 不做mask,即所有元素为1
  17. if input_mask is None:
  18. input_mask = tf.ones(shape=[batch_size, seq_length], dtype=tf.int32)
  19. if token_type_ids is None:
  20. token_type_ids = tf.zeros(shape=[batch_size, seq_length], dtype=tf.int32)
  21. with tf.variable_scope(scope, default_name="bert"):
  22. with tf.variable_scope("embeddings"): # 构建词嵌入层
  23. # word embedding
  24. (self.embedding_output, self.embedding_table) = embedding_lookup( # 将词转换成向量
  25. input_ids=input_ids, # 8x128
  26. vocab_size=config.vocab_size, # 模型中的词表
  27. embedding_size=config.hidden_size, # 想要把词映射成多少纬度,tf官网给出的纬度是768
  28. initializer_range=config.initializer_range, #初始化取值范围
  29. word_embedding_name="word_embeddings",
  30. use_one_hot_embeddings=use_one_hot_embeddings)
  31. # 添加position embedding和segment embedding
  32. # layer norm + dropout
  33. self.embedding_output = embedding_postprocessor( # 加入位置编码
  34. input_tensor=self.embedding_output,
  35. use_token_type=True,
  36. token_type_ids=token_type_ids,
  37. token_type_vocab_size=config.type_vocab_size,
  38. token_type_embedding_name="token_type_embeddings",
  39. use_position_embeddings=True,
  40. position_embedding_name="position_embeddings",
  41. initializer_range=config.initializer_range,
  42. max_position_embeddings=config.max_position_embeddings,
  43. dropout_prob=config.hidden_dropout_prob)
  44. with tf.variable_scope("encoder"):
  45. # input_ids是经过padding的word_ids:[25, 120, 34, 0, 0]
  46. # input_mask是有效词标记:[1, 1, 1, 0, 0]
  47. attention_mask = create_attention_mask_from_input_mask(
  48. input_ids, input_mask)
  49. # transformer模块叠加
  50. # `sequence_output` shape = [batch_size, seq_length, hidden_size].
  51. self.all_encoder_layers = transformer_model(
  52. input_tensor=self.embedding_output,
  53. attention_mask=attention_mask,
  54. hidden_size=config.hidden_size,
  55. num_hidden_layers=config.num_hidden_layers,
  56. num_attention_heads=config.num_attention_heads,
  57. intermediate_size=config.intermediate_size,
  58. intermediate_act_fn=get_activation(config.hidden_act),
  59. hidden_dropout_prob=config.hidden_dropout_prob,
  60. attention_probs_dropout_prob=config.attention_probs_dropout_prob,
  61. initializer_range=config.initializer_range,
  62. do_return_all_layers=True)
  63. # `self.sequence_output`是最后一层的输出,shape为【batch_size, seq_length, hidden_size
  64. self.sequence_output = self.all_encoder_layers[-1]
  65. # ‘pooler’部分将encoder输出【batch_size, seq_length, hidden_size
  66. # 转成【batch_size, hidden_size
  67. with tf.variable_scope("pooler"):
  68. # 取最后一层的第一个时刻[CLS]对应的tensor, 对于分类任务很重要
  69. # sequence_output[:, 0:1, :]得到的是[batch_size, 1, hidden_size]
  70. # 我们需要用squeeze把第二维去掉
  71. first_token_tensor = tf.squeeze(self.sequence_output[:, 0:1, :], axis=1)
  72. # 然后再加一个全连接层,输出仍然是[batch_size, hidden_size]
  73. self.pooled_output = tf.layers.dense(
  74. first_token_tensor,
  75. config.hidden_size,
  76. activation=tf.tanh,
  77. kernel_initializer=create_initializer(config.initializer_range))

接下来我们将会按照init代码从上到下解读主要函数的代码。

获取词向量(Embedding_lookup)

  1. def embedding_lookup(input_ids, # word_id:【batch_size, seq_length
  2. vocab_size,
  3. embedding_size=128,
  4. initializer_range=0.02,
  5. word_embedding_name="word_embeddings",
  6. use_one_hot_embeddings=False):
  7. # 该函数默认输入的形状为【batch_size, seq_length, input_num】 比如8X128
  8. # 如果输入为2D的【batch_size, seq_length】,则扩展到【batch_size, seq_length, 1
  9. if input_ids.shape.ndims == 2:
  10. input_ids = tf.expand_dims(input_ids, axis=[-1])
  11. embedding_table = tf.get_variable( # 词映射矩阵,30522768,在词表内进行查找
  12. name=word_embedding_name,
  13. shape=[vocab_size, embedding_size], # 30522,768
  14. initializer=create_initializer(initializer_range))
  15. flat_input_ids = tf.reshape(input_ids, [-1]) #【batch_size*seq_length*input_num】
  16. if use_one_hot_embeddings:
  17. one_hot_input_ids = tf.one_hot(flat_input_ids, depth=vocab_size)
  18. output = tf.matmul(one_hot_input_ids, embedding_table)
  19. else: # 按索引取值
  20. output = tf.gather(embedding_table, flat_input_ids) # 一个batch里所有的映射结果
  21. input_shape = get_shape_list(input_ids)
  22. # output:[batch_size, seq_length, num_inputs]
  23. # 转成:[batch_size, seq_length, num_inputs*embedding_size]
  24. output = tf.reshape(output,
  25. input_shape[0:-1] + [input_shape[-1] * embedding_size])
  26. return (output, embedding_table) # (8,128,768

参数定义:

  • input_ids:word id 【batch_size, seq_length】

  • vocab_size:embedding 词表

  • embedding_size:embedding 维度

  • initializer_range:embedding 初始化范围

  • word_embedding_name:embeddding table 命名

  • use_one_hot_embeddings:是否使用 one-hotembedding

  • Return:【batch_size, seq_length, embedding_size】

该模块是将一个词转换成向量的模块,它的输入是batch_size*seq_length,输出是batch_size, seq_length, embedding_size。这个embedding_size是每个词所映射成向量后的纬度。在编码向量的时候此处就是在bert预训练好的模型中查找词的向量。bert_model.ckpt.data-00000-of-00001里面存放的是训练好的词向量,vocab.txt里面存放的是词表。具体存放如下所示:

位置编码(embedding_postprocessor)

我们知道 BERT 模型的输入有三部分:token embedding ,segment embedding以及position embedding。在 Transformer 论文中的position embedding是由 sin/cos 函数生成的固定的值,而在这里代码实现中是跟普通 word embedding 一样随机生成的,可以训练的。

  1. def embedding_postprocessor(input_tensor, # [batch_size, seq_length, embedding_size]
  2. use_token_type=False,
  3. token_type_ids=None,
  4. token_type_vocab_size=16, # 一般是2
  5. token_type_embedding_name="token_type_embeddings",
  6. use_position_embeddings=True,
  7. position_embedding_name="position_embeddings",
  8. initializer_range=0.02,
  9. max_position_embeddings=512, #最大位置编码,必须大于等于max_seq_len
  10. dropout_prob=0.1):
  11. input_shape = get_shape_list(input_tensor, expected_rank=3) #【batch_size,seq_length,embedding_size
  12. batch_size = input_shape[0]
  13. seq_length = input_shape[1]
  14. width = input_shape[2]
  15. output = input_tensor
  16. # Segment position信息
  17. if use_token_type:
  18. if token_type_ids is None:
  19. raise ValueError("`token_type_ids` must be specified if"
  20. "`use_token_type` is True.")
  21. token_type_table = tf.get_variable( # (2,768),2的意思是只有两种结果,第一句和第二句,第一句用0表示,第二句用1表示
  22. name=token_type_embedding_name,
  23. shape=[token_type_vocab_size, width],
  24. initializer=create_initializer(initializer_range))
  25. # This vocab will be small so we always do one-hot here, since it is always
  26. # faster for a small vocabulary.
  27. # 由于token-type-table比较小,所以这里采用one-hot的embedding方式加速
  28. flat_token_type_ids = tf.reshape(token_type_ids, [-1]) # 对8x128=1024个词都要找到segment position信息,每个词有两种可能性
  29. one_hot_ids = tf.one_hot(flat_token_type_ids, depth=token_type_vocab_size)# 102422,768做乘法
  30. token_type_embeddings = tf.matmul(one_hot_ids, token_type_table)
  31. token_type_embeddings = tf.reshape(token_type_embeddings,
  32. [batch_size, seq_length, width]) # 8,128,768
  33. output += token_type_embeddings
  34. # Position embedding信息
  35. if use_position_embeddings:
  36. # 确保seq_length小于等于max_position_embeddings
  37. assert_op = tf.assert_less_equal(seq_length, max_position_embeddings)
  38. with tf.control_dependencies([assert_op]):
  39. full_position_embeddings = tf.get_variable(
  40. name=position_embedding_name,
  41. shape=[max_position_embeddings, width],
  42. initializer=create_initializer(initializer_range))
  43. # 这里position embedding是可学习的参数,[max_position_embeddings, width]
  44. # 但是通常实际输入序列没有达到max_position_embeddings
  45. # 所以为了提高训练速度,使用tf.slice取出句子长度的embedding
  46. position_embeddings = tf.slice(full_position_embeddings, [0, 0],
  47. [seq_length, -1]) # 位置编码纬度过大,此处为了加速只取出有用的部分,128768
  48. num_dims = len(output.shape.as_list())
  49. # word embedding之后的tensor是[batch_size, seq_length, width]
  50. # 因为位置编码是与输入内容无关,它的shape总是[seq_length, width]
  51. # 我们无法把位置Embedding加到word embedding上
  52. # 因此我们需要扩展位置编码为[1, seq_length, width]
  53. # 然后就能通过broadcasting加上去了。
  54. position_broadcast_shape = []
  55. for _ in range(num_dims - 2):
  56. position_broadcast_shape.append(1)
  57. position_broadcast_shape.extend([seq_length, width])
  58. position_embeddings = tf.reshape(position_embeddings, # [1128,768]表示位置编码跟输入数据无关
  59. position_broadcast_shape)
  60. output += position_embeddings
  61. output = layer_norm_and_dropout(output, dropout_prob)
  62. return output

先加上了一个segment position的信息,然后才加Position embedding的信息。先初始化一个(2,768)的矩阵,2的意思是只有两种结果,第一句和第二句,第一句用0表示,第二句用1表示。然后在做segment的时候对8x128=1024个词都要找到segment position信息,每个词有两种可能性。找的方法是用矩阵的乘法。(1024,2)和(2,768)大小的矩阵做乘法。

在加上位置编码的时候先初始化一个位置矩阵,刚开始初始化矩阵的纬度可能比较大,假设是512,也就是说有512个位置。矩阵的大小是512*768,目的在于和词向量长度一样。然后取和seq_length大小一样的部分,此处seq_length的大小是128。得到的位置编码矩阵大小是128x768,768是保证和词向量的纬度相同,后面将位置编码进行扩展并且和词向量进行相加。返回的output是整个embedding的结果。

构造 attention_mask

该模块大概理解作用即可,此处不再对代码进行过多的解读。它的输入是一个二维的向量,输出是一个3D的矩阵。新增的纬度作用在于让一句话中的每一个词编码的向量能够看到自己可以进行计算的向量。下面我用一个图来解释,假设下图中的向量是8个句子做完embedding后的向量,后面的0代表句子的长度已结束。此时第一个句子的第一个编码在后面做self-Attention所需要和该句子中的其他向量计算,那么该和哪些向量计算呐?此处就是用新增加的纬度来表示需要计算的词向量,图中下部分是转换成3D后新增加的一个向量来表示和哪些词进行计算,1代表能计算,0代表不进行计算。该部分的核心代码在create_attention_mask_from_input_mask模块。

注意力层(attention layer)

这部分代码是「multi-head attention」的实现,主要来自《Attention is all you need》这篇论文。考虑key-query-value形式的 attention,输入的from_tensor当做是 query, to_tensor当做是 key 和 value,当两者相同的时候即为 self-attention。

  1. def attention_layer(from_tensor, # 【batch_size, from_seq_length, from_width】
  2. to_tensor, #【batch_size, to_seq_length, to_width】
  3. attention_mask=None, #【batch_size,from_seq_length, to_seq_length
  4. num_attention_heads=1, # attention head numbers
  5. size_per_head=512, # 每个head的大小
  6. query_act=None, # query变换的激活函数
  7. key_act=None, # key变换的激活函数
  8. value_act=None, # value变换的激活函数
  9. attention_probs_dropout_prob=0.0, # attention层的dropout
  10. initializer_range=0.02, # 初始化取值范围
  11. do_return_2d_tensor=False, # 是否返回2d张量。
  12. #如果True,输出形状【batch_size*from_seq_length,num_attention_heads*size_per_head】
  13. #如果False,输出形状【batch_size, from_seq_length, num_attention_heads*size_per_head】
  14. batch_size=None, #如果输入是3D的,
  15. #那么batch就是第一维,但是可能3D的压缩成了2D的,所以需要告诉函数batch_size
  16. from_seq_length=None, # 同上
  17. to_seq_length=None): # 同上
  18. def transpose_for_scores(input_tensor, batch_size, num_attention_heads,
  19. seq_length, width):
  20. output_tensor = tf.reshape(
  21. input_tensor, [batch_size, seq_length, num_attention_heads, width])
  22. output_tensor = tf.transpose(output_tensor, [0, 2, 1, 3]) #[batch_size, num_attention_heads, seq_length, width]
  23. return output_tensor
  24. from_shape = get_shape_list(from_tensor, expected_rank=[2, 3])
  25. to_shape = get_shape_list(to_tensor, expected_rank=[2, 3])
  26. if len(from_shape) != len(to_shape):
  27. raise ValueError(
  28. "The rank of `from_tensor` must match the rank of `to_tensor`.")
  29. if len(from_shape) == 3:
  30. batch_size = from_shape[0]
  31. from_seq_length = from_shape[1]
  32. to_seq_length = to_shape[1]
  33. elif len(from_shape) == 2:
  34. if (batch_size is None or from_seq_length is None or to_seq_length is None):
  35. raise ValueError(
  36. "When passing in rank 2 tensors to attention_layer, the values "
  37. "for `batch_size`, `from_seq_length`, and `to_seq_length` "
  38. "must all be specified.")
  39. # 为了方便备注shape,采用以下简写:
  40. # B = batch size (number of sequences) 8
  41. # F = `from_tensor` sequence length 128
  42. # T = `to_tensor` sequence length 128
  43. # N = `num_attention_heads` 12
  44. # H = `size_per_head` 每个头有64个特征
  45. # 把from_tensor和to_tensor压缩成2D张量
  46. # 把from_tensor和to_tensor压缩成2D张量
  47. from_tensor_2d = reshape_to_matrix(from_tensor) # 【B*F, hidden_size
  48. to_tensor_2d = reshape_to_matrix(to_tensor) # 【B*T, hidden_size
  49. # 将from_tensor输入全连接层得到query_layer
  50. # `query_layer` = [B*F, N*H]
  51. query_layer = tf.layers.dense(
  52. from_tensor_2d,
  53. num_attention_heads * size_per_head,
  54. activation=query_act,
  55. name="query",
  56. kernel_initializer=create_initializer(initializer_range))
  57. # 将from_tensor输入全连接层得到query_layer
  58. # `key_layer` = [B*T, N*H]
  59. key_layer = tf.layers.dense(
  60. to_tensor_2d,
  61. num_attention_heads * size_per_head,
  62. activation=key_act,
  63. name="key",
  64. kernel_initializer=create_initializer(initializer_range))
  65. # 同上
  66. # `value_layer` = [B*T, N*H]
  67. value_layer = tf.layers.dense(
  68. to_tensor_2d,
  69. num_attention_heads * size_per_head,
  70. activation=value_act,
  71. name="value",
  72. kernel_initializer=create_initializer(initializer_range))
  73. # query_layer转成多头:[B*F, N*H]==>[B, F, N, H]==>[B, N, F, H]
  74. query_layer = transpose_for_scores(query_layer, batch_size,
  75. num_attention_heads, from_seq_length,
  76. size_per_head)
  77. # key_layer转成多头:[B*T, N*H] ==> [B, T, N, H] ==> [B, N, T, H]
  78. key_layer = transpose_for_scores(key_layer, batch_size, num_attention_heads,
  79. to_seq_length, size_per_head)
  80. # 将query与key做点积,然后做一个scale,公式可以参见原始论文
  81. # `attention_scores` = [B, N, F, T]
  82. attention_scores = tf.matmul(query_layer, key_layer, transpose_b=True)
  83. attention_scores = tf.multiply(attention_scores,
  84. 1.0 / math.sqrt(float(size_per_head)))
  85. if attention_mask is not None:
  86. # `attention_mask` = [B, 1, F, T]
  87. attention_mask = tf.expand_dims(attention_mask, axis=[1])
  88. # 如果attention_mask里的元素为1,则通过下面运算有(1-1*-10000,adder就是0
  89. # 如果attention_mask里的元素为0,则通过下面运算有(1-0*-10000,adder就是-10000
  90. adder = (1.0 - tf.cast(attention_mask, tf.float32)) * -10000.0
  91. # 我们最终得到的attention_score一般不会很大,
  92. #所以上述操作对mask为0的地方得到的score可以认为是负无穷
  93. attention_scores += adder
  94. # 负无穷经过softmax之后为0,就相当于mask为0的位置不计算attention_score
  95. # `attention_probs` = [B, N, F, T]
  96. attention_probs = tf.nn.softmax(attention_scores)
  97. # 对attention_probs进行dropout,这虽然有点奇怪,但是Transforme原始论文就是这么做的
  98. attention_probs = dropout(attention_probs, attention_probs_dropout_prob)
  99. # `value_layer` = [B, T, N, H]
  100. value_layer = tf.reshape(
  101. value_layer,
  102. [batch_size, to_seq_length, num_attention_heads, size_per_head])
  103. # `value_layer` = [B, N, T, H]
  104. value_layer = tf.transpose(value_layer, [0, 2, 1, 3])
  105. # `context_layer` = [B, N, F, H]
  106. context_layer = tf.matmul(attention_probs, value_layer)
  107. # `context_layer` = [B, F, N, H]
  108. context_layer = tf.transpose(context_layer, [0, 2, 1, 3])
  109. if do_return_2d_tensor:
  110. # `context_layer` = [B*F, N*H]
  111. context_layer = tf.reshape(
  112. context_layer,
  113. [batch_size * from_seq_length, num_attention_heads * size_per_head])
  114. else:
  115. # `context_layer` = [B, F, N*H]
  116. context_layer = tf.reshape(
  117. context_layer,
  118. [batch_size, from_seq_length, num_attention_heads * size_per_head])
  119. return context_layer

attention layer 的主要流程:

  • 对输入的 tensor 进行形状校验,提取batch_size、from_seq_length 、to_seq_length

  • 输入如果是 3d 张量则转化成 2d 矩阵;

  • from_tensor 作为 query, to_tensor 作为 key 和 value,经过一层全连接层后得到 query_layer、key_layer 、value_layer;

  • 将上述张量通过transpose_for_scores转化成 multi-head;

  • 根据论文公式计算 attention_score 以及 attention_probs(注意 attention_mask 的 trick):

  • 将得到的 attention_probs 与 value 相乘,返回 2D 或 3D 张量

Transformer

  1. def transformer_model(input_tensor, # 【batch_size, seq_length, hidden_size
  2. attention_mask=None, # 【batch_size, seq_length, seq_length
  3. hidden_size=768,
  4. num_hidden_layers=12,
  5. num_attention_heads=12,
  6. intermediate_size=3072,
  7. intermediate_act_fn=gelu, # feed-forward层的激活函数
  8. hidden_dropout_prob=0.1,
  9. attention_probs_dropout_prob=0.1,
  10. initializer_range=0.02,
  11. do_return_all_layers=False):
  12. # 这里注意,因为最终要输出hidden_size, 我们有num_attention_head个区域,
  13. # 每个head区域有size_per_head多的隐层
  14. # 所以有 hidden_size = num_attention_head * size_per_head
  15. if hidden_size % num_attention_heads != 0:
  16. raise ValueError(
  17. "The hidden size (%d) is not a multiple of the number of attention "
  18. "heads (%d)" % (hidden_size, num_attention_heads))
  19. attention_head_size = int(hidden_size / num_attention_heads)
  20. input_shape = get_shape_list(input_tensor, expected_rank=3)
  21. batch_size = input_shape[0]
  22. seq_length = input_shape[1]
  23. input_width = input_shape[2]
  24. # 因为encoder中有残差操作,所以需要shape相同
  25. if input_width != hidden_size:
  26. raise ValueError("The width of the input tensor (%d) != hidden size (%d)" %
  27. (input_width, hidden_size))
  28. # reshape操作在CPU/GPU上很快,但是在TPU上很不友好
  29. # 所以为了避免2D和3D之间的频繁reshape,我们把所有的3D张量用2D矩阵表示
  30. prev_output = reshape_to_matrix(input_tensor)
  31. all_layer_outputs = []
  32. for layer_idx in range(num_hidden_layers):
  33. with tf.variable_scope("layer_%d" % layer_idx):
  34. layer_input = prev_output
  35. with tf.variable_scope("attention"):
  36. # multi-head attention
  37. attention_heads = []
  38. with tf.variable_scope("self"):
  39. # self-attention
  40. attention_head = attention_layer(
  41. from_tensor=layer_input,
  42. to_tensor=layer_input,
  43. attention_mask=attention_mask,
  44. num_attention_heads=num_attention_heads,
  45. size_per_head=attention_head_size,
  46. attention_probs_dropout_prob=attention_probs_dropout_prob,
  47. initializer_range=initializer_range,
  48. do_return_2d_tensor=True,
  49. batch_size=batch_size,
  50. from_seq_length=seq_length,
  51. to_seq_length=seq_length)
  52. attention_heads.append(attention_head)
  53. attention_output = None
  54. if len(attention_heads) == 1:
  55. attention_output = attention_heads[0]
  56. else:
  57. # 如果有多个head,将他们拼接起来
  58. attention_output = tf.concat(attention_heads, axis=-1)
  59. # 对attention的输出进行线性映射, 目的是将shape变成与input一致
  60. # 然后dropout+residual+norm
  61. with tf.variable_scope("output"):
  62. attention_output = tf.layers.dense(
  63. attention_output,
  64. hidden_size,
  65. kernel_initializer=create_initializer(initializer_range))
  66. attention_output = dropout(attention_output, hidden_dropout_prob)
  67. attention_output = layer_norm(attention_output + layer_input)
  68. # feed-forward
  69. with tf.variable_scope("intermediate"):
  70. intermediate_output = tf.layers.dense(
  71. attention_output,
  72. intermediate_size,
  73. activation=intermediate_act_fn,
  74. kernel_initializer=create_initializer(initializer_range))
  75. # 对feed-forward层的输出使用线性变换变回‘hidden_size
  76. # 然后dropout + residual + norm
  77. with tf.variable_scope("output"):
  78. layer_output = tf.layers.dense(
  79. intermediate_output,
  80. hidden_size,
  81. kernel_initializer=create_initializer(initializer_range))
  82. layer_output = dropout(layer_output, hidden_dropout_prob)
  83. layer_output = layer_norm(layer_output + attention_output)
  84. prev_output = layer_output
  85. all_layer_outputs.append(layer_output)
  86. if do_return_all_layers:
  87. final_outputs = []
  88. for layer_output in all_layer_outputs:
  89. final_output = reshape_from_matrix(layer_output, input_shape)
  90. final_outputs.append(final_output)
  91. return final_outputs
  92. else:
  93. final_output = reshape_from_matrix(prev_output, input_shape)
  94. return final_output

如果对transformer理论还不是很理解的可以转到https://blog.csdn.net/one_super_dreamer/article/details/105181690

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/312395
推荐阅读
相关标签
  

闽ICP备14008679号