Thanks for your insightful paper and sharing code.
I run your shared code on experiment 4 MNIST, I can reproduce results claimed in Table 3 except LangevinVAE. It reported NLL around 200 in multiple runs.
I notice there could be a bug in your code, the line misses y in calling interpolated_force. But the results didn't change even I changed to
x1 = x + stepsize * self.interpolated_force(x, y, lambda_) + torch.sqrt(2*stepsize) * torch.randn_like(x)
Thanks for your insightful paper and sharing code.
I run your shared code on experiment 4 MNIST, I can reproduce results claimed in Table 3 except LangevinVAE. It reported NLL around 200 in multiple runs.
I notice there could be a bug in your code, the line misses
yin callinginterpolated_force. But the results didn't change even I changed to