Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Interface for iterative sampling #25

Open
asmodehn opened this issue May 28, 2020 · 0 comments
Open

Interface for iterative sampling #25

asmodehn opened this issue May 28, 2020 · 0 comments

Comments

@asmodehn
Copy link

It would be interesting to have an interface for dynamic iterative sampling...

Instead of doing something like:

process.sample(255)

for a more dynamic process (like a simulation of some kind), I would do something like:

while True:
    process.sample(1).
    plots.update().
    # etc

but I am guessing there are restrictions on how to do the sampling in an iterative way, depending on the kind of stochastic process we want to simulate.

I only know about Markov Chain specifying that the next sample depends only on the one before, so I am assuming other kinds of stochastic processes have various constraints about this... hence why I'm thinking about an extra interface for iterative sampling to support that use-case.

Thoughts ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant