Giter VIP home page Giter VIP logo

Comments (2)

shchur avatar shchur commented on June 27, 2024

Hi, sorry, the code that we used for that experiment was pretty ugly, so we haven't included it in the repo. It should be rather straightforward to implement it with the refactored version of the code, here is you can do it.

  1. Add static attributes as argument to the Sequence constructor. Make sure that the attributes tensor has the same first dimension as inter_times, i.e. has shape (seq_len, attr_dim).
  2. In the Batch.from_list method stack the attributes vectors for each sequence into a padded tensor of shape (batch_size, max_seq_len, attr_dim) and store it as batch.attributes.
  3. Combine the stacked/padded attributes (stored in batch.attributes) with the context embedding in the model. There are several ways you can do this. One idea is to create a new linear layer self.attr_emb = nn.Linear(attr_dim, context_size) in RecurrentTPP.__init__ and change the context computation to context = self.get_context(features) + self.attr_emb(batch.attributes).

from ifl-tpp.

krsna6 avatar krsna6 commented on June 27, 2024

Thank you so much for the quick response. I appreciate it. I am working with your older code base in the branch original-code as it has other baselines too and it seems pretty straightforward to do this looks like.

from ifl-tpp.

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.