Giter Site home page Giter Site logo

Comments (7)

beebrain avatar beebrain commented on June 24, 2024

@kyquang97 Luong takes the last context vector and concatenates them with the last output vector as an input to RNN. The output from RNN will be passed to Attention layer to calculate the context vector in the current time step. The current context vector combines with the current output from RNN will be calculated to the current output for this time step. Please noted that the current context vector will be passed to the next time step.

from practical-pytorch.

Coderx7 avatar Coderx7 commented on June 24, 2024

@beebrain Please correct me if I'm wrong, but you are using the Lstm layer, instead of the lstm cell, so when each forward pass happens its a different sample not a different timestep on a single sample. You have no control over each timesteps separately here. what you get out of the RNN in this configuration is just a translation/sequence that has already gone through all timesteps!

from practical-pytorch.

syorami avatar syorami commented on June 24, 2024

@kyquang97 Luong takes the last context vector and concatenates them with the last output vector as an input to RNN. The output from RNN will be passed to Attention layer to calculate the context vector in the current time step. The current context vector combines with the current output from RNN will be calculated to the current output for this time step. Please noted that the current context vector will be passed to the next time step.

I think he just meant that in this implementation, the rnn_output is fed into the attention layer instead of the current decoder hidden state, which is inconsistent with the description in the original paper.

from practical-pytorch.

beebrain avatar beebrain commented on June 24, 2024

@kyquang97 Luong takes the last context vector and concatenates them with the last output vector as an input to RNN. The output from RNN will be passed to Attention layer to calculate the context vector in the current time step. The current context vector combines with the current output from RNN will be calculated to the current output for this time step. Please noted that the current context vector will be passed to the next time step.

I think he just meant that in this implementation, the rnn_output is fed into the attention layer instead of the current decoder hidden state, which is inconsistent with the description in the original paper.

I think the rnn_output and hidden output of self.gru had the same value. You can use hidden or rnn_output.

from practical-pytorch.

syorami avatar syorami commented on June 24, 2024

@kyquang97 Luong takes the last context vector and concatenates them with the last output vector as an input to RNN. The output from RNN will be passed to Attention layer to calculate the context vector in the current time step. The current context vector combines with the current output from RNN will be calculated to the current output for this time step. Please noted that the current context vector will be passed to the next time step.

I think he just meant that in this implementation, the rnn_output is fed into the attention layer instead of the current decoder hidden state, which is inconsistent with the description in the original paper.

I think the rnn_output and hidden output of self.gru had the same value. You can use hidden or rnn_output.

You do remind me! I'm also confused by the usage of outputs and hidden states in some attention implementations at first and they do actually share the same values. BTW, what about the LSTM? From Pytorch doc, the LSTM outputs hidden states as well as cell states. Are cell states used in attention or can I just consider using outputs and last hidden states equally?

from practical-pytorch.

beebrain avatar beebrain commented on June 24, 2024

@kyquang97 Luong takes the last context vector and concatenates them with the last output vector as an input to RNN. The output from RNN will be passed to Attention layer to calculate the context vector in the current time step. The current context vector combines with the current output from RNN will be calculated to the current output for this time step. Please noted that the current context vector will be passed to the next time step.

I think he just meant that in this implementation, the rnn_output is fed into the attention layer instead of the current decoder hidden state, which is inconsistent with the description in the original paper.

I think the rnn_output and hidden output of self.gru had the same value. You can use hidden or rnn_output.

You do remind me! I'm also confused by the usage of outputs and hidden states in some attention implementations at first and they do actually share the same values. BTW, what about the LSTM? From Pytorch doc, the LSTM outputs hidden states as well as cell states. Are cell states used in attention or can I just consider using outputs and last hidden states equally?

In my opinion, You can use the hidden state output like GRU.

from practical-pytorch.

richardsun-voyager avatar richardsun-voyager commented on June 24, 2024

I am also confused about why we can calculate all the attention scores for the source sentence using the previous hidden state and current input embedding.

from practical-pytorch.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.