Механизм внимания / Руководства по Tensorflow - PullRequest
0 голосов
/ 18 июня 2020

Я пытаюсь улучшить свой черновик кода механизма внимания, где у меня была в основном итерация шагов декодера и ячейка декодера LSTM, получающая вектор контекста на каждом шаге из модуля внимания:

post_activation_LSTM_cell = layers.LSTM(n_s, return_state = True)
output_layer = Dense(1)

s0 = Input(shape=(n_s,), name='s0')
c0 = Input(shape=(n_s,), name='c0')
s = s0
c = c0


outputs = []

input_tensor = Input(shape=(past_period,raw_dataset.shape[-1])) 

h = Bidirectional(LSTM(n_a, return_sequences = True))(input_tensor)

for t in range(preview_period):

    context = one_step_attention(h,s)

    s, _, c = post_activation_LSTM_cell(context,initial_state = [s, c])

    out = output_layer(s)

    outputs.append(out)





model=Model([input_tensor,s0,c0],outputs)
model.summary()  

Я обнаружил, что реализация из руководств по тензорному потоку намного чище, но я не вижу, как декодер получает на каждом шаге вывода другой вектор контекста из bahdanau, похоже, что декодер получает только один вектор контекста, чего мне не хватает ???

https://www.tensorflow.org/tutorials/text/nmt_with_attention

class BahdanauAttention(tf.keras.layers.Layer):
    def __init__(self, units):
        super(BahdanauAttention, self).__init__()
        self.W1 = tf.keras.layers.Dense(units)
        self.W2 = tf.keras.layers.Dense(units)
        self.V = tf.keras.layers.Dense(1)

    def call(self, query, values):
        # query hidden state shape == (batch_size, hidden size)
        # query_with_time_axis shape == (batch_size, 1, hidden size)
        # values shape == (batch_size, max_len, hidden size)
        # we are doing this to broadcast addition along the time axis to calculate the score
        query_with_time_axis = tf.expand_dims(query, 1)

        # score shape == (batch_size, max_length, 1)
        # we get 1 at the last axis because we are applying score to self.V
        # the shape of the tensor before applying self.V is (batch_size, max_length, units)
        score = self.V(tf.nn.tanh(
            self.W1(query_with_time_axis) + self.W2(values)))

        # attention_weights shape == (batch_size, max_length, 1)
        attention_weights = tf.nn.softmax(score, axis=1)

        # context_vector shape after sum == (batch_size, hidden_size)
        context_vector = attention_weights * values
        context_vector = tf.reduce_sum(context_vector, axis=1)

        return context_vector, attention_weights


class Decoder(tf.keras.Model):
    def __init__(self, vocab_size, embedding_dim, dec_units, batch_sz):
        super(Decoder, self).__init__()
        self.batch_sz = batch_sz
        self.dec_units = dec_units
        self.embedding = tf.keras.layers.Embedding(vocab_size, embedding_dim)
        self.gru = tf.keras.layers.GRU(self.dec_units,
                                       return_sequences=True,
                                       return_state=True,
                                       recurrent_initializer='glorot_uniform')
        self.fc = tf.keras.layers.Dense(vocab_size)

        # used for attention
        self.attention = BahdanauAttention(self.dec_units)

    def call(self, x, hidden, enc_output):
        # enc_output shape == (batch_size, max_length, hidden_size)
        context_vector, attention_weights = self.attention(hidden, enc_output)

        # x shape after passing through embedding == (batch_size, 1, embedding_dim)
        x = self.embedding(x)

        # x shape after concatenation == (batch_size, 1, embedding_dim + hidden_size)
        x = tf.concat([tf.expand_dims(context_vector, 1), x], axis=-1)

        # passing the concatenated vector to the GRU
        output, state = self.gru(x)

        # output shape == (batch_size * 1, hidden_size)
        output = tf.reshape(output, (-1, output.shape[2]))

        # output shape == (batch_size, vocab)
        x = self.fc(output)

        return x, state, attention_weights



1 Ответ

0 голосов
/ 18 июня 2020

Вы правы, декодер получает только один вектор контекста. Метод call класса декодера реализует только один шаг декодера.

Далее в учебнике есть l oop итерация по целевому предложению во время обучения, а еще l oop используется для выборки во время вывода.

...