-
Notifications
You must be signed in to change notification settings - Fork 6
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
p(t) in Algorithm 2 #3
Comments
Hi @boxaio!
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In Algorithm 2 (in practice), you sample the time points t \sim p(t), where p(t) can be viewed as a proposal importance sampling distribution. One can take p(t) to be estimated using Eq.(85), as you mentioned in Appendix.C. But in this code repository (see losses.py)
you have
p_t = time_sampler.invdensity(t)
which is according to an uniform distribution (see dynamics.utils).
So I wonder how you actually implemented your claim in Algorithm 2 in Appendix C.
The text was updated successfully, but these errors were encountered: