GithubHelp home page GithubHelp logo

Comments (3)

watchwater avatar watchwater commented on June 15, 2024 1

Hello, thanks for your patient and detailed explanation, I will read code again with the help of this explanation.

from behavior-sequence-transformer-pytorch.

jiwidi avatar jiwidi commented on June 15, 2024

Hi! Thanks for the question, let me try answer it

Is exactly just returning the weight of the positional embedding, weight is the actual value of the embeddings.

Since we are using a fixed sequence length and we are creating positional embeddings for positions==max_len we will want the full weight of the positional embedding table.

So for max_len=10 the positional embedding table will have 10 entries right?? We want to access those 10 entries and sum the value of those entries to the already existing sequence items (we are doing sum of positional embedding here, not concat)

from behavior-sequence-transformer-pytorch.

shamanez avatar shamanez commented on June 15, 2024
    
    def forward(self, batch):
        transfomer_features, user_features, target_movie_rating = self.encode_input(batch)
        transfomer_features = self.positional_embedding(transfomer_features)
        transformer_output = self.transfomerlayer(transfomer_features)
        transformer_output = torch.flatten(transformer_output,start_dim=1)

According to the above function, you only input the positional encoding to the transformer layer. Because the output from self.positional_embedding is actually an embedding lookup. I think you need an extra step to add transfomer_features, with positional encodings before sending it through the transformer layer.

from behavior-sequence-transformer-pytorch.

Related Issues (8)

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.