Questions tagged [langevin-diffusion]
4 questions
8
votes
0 answers
Tuning MALA (Metropolis-adjusted Langevin) proposal
I'd like to implement a version of Metropolis-adjusted Langevin sampling, but I'm unsure how to go about tuning the parameters of the proposal density.
My understanding is that in MALA, a proposal is generated as:
$$
X^*=X+\tau\nabla…

Ruben van Bergen
- 6,511
- 1
- 20
- 38
7
votes
2 answers
Reconciling Langevin MC methods as one-step HMC versus as diffusion or brownian motion
I have a basic understanding of Hamiltonian monte carlo and why it works. I've read that Langevin MC is basically a special case of HMC when you only step the dynamics forward a single timestep before resampling the momentum -- and I see how this…

shimao
- 22,706
- 2
- 42
- 81
4
votes
1 answer
Does Langevin MCMC with decreasing step size require Metropolis-Hastings?
We want to sample from the distribution $P(\theta \mid X)$, which we only know up to a multiplicative constant. In Langvin MCMC, our Markov Chain is
$$
\theta_{t+1} = \theta_t + \frac{\epsilon_t}{2}\left ( \nabla P(\theta_t) + \sum_{i = 1}^n \nabla…

xeqql
- 53
- 4
3
votes
2 answers
How to solve MALA when the target density is known up to a constant?
If you look at the wikipedia explanation of Metropolis adjusted Langevin Algorithm, the acceptance ratio is given by
The second equation involves taking the gradient of the log of $\pi(x)$. However, the whole reason for doing MCMC is that you do…

bhomass
- 477
- 3
- 13