Git Product home page Git Product logo

Comments (3)

shchur avatar shchur commented on August 15, 2024 1

Yes, that's exactly what you should do. Just use model.get_features and model.get_context to obtain the history embedding, and then pass the last embedding to the model.sample function.

from ifl-tpp.

shchur avatar shchur commented on August 15, 2024

Hi, can you please elaborate what exactly you would like to do? If you want to sample entire trajectories over the forecast horizon but only care about one single mark, you could just generate the entire trajectories as follows

def select_mark(seq, mark: int):
    arrival_times = seq.inter_times.cumsum(-1)[:-1]
    return arrival_times[seq.marks == mark]

trajectories = model.sample(t_end=t_end, batch_size=100).to_list()
# e.g., select arrival times of events with mark #2
trajectories_for_mark = [select_mark(seq, mark=2) for seq in trajectories]

If you want to condition on some past sequence, you will need to get the context vector for the sequence that you want to condition on and pass it to model.sample.

from ifl-tpp.

ritvik06 avatar ritvik06 commented on August 15, 2024

Thanks for your quick reply, this is really helpful.

I want to sample points of a specific mark given a historical sequence of events (basically forecasting). Do you think assigning the context_init arg as the historical embedding of the sequence in model.sample would work? Also do you think it's easy to rewrite model.sample with the refactored version of your code?

Thanks for your help again!

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.