This sampler navigates the proposal distribution following a random walk. At each step, it generates a new proposal from a proposal distribution (in this case a Gaussian centered at the current position) and chooses to accept it or reject it following the Metropolis-Hastings rule: it accepts it if the density of the posterior distribution at the proposed point is higher than at the current point. If the current position is denser, it still may accept the proposal with probability proposal_density / current_density
.
sampler_mh(
start,
distr_name = NULL,
distr_params = NULL,
sigma_prop = NULL,
iterations = 1024L,
weights = NULL,
custom_density = NULL,
alpha = 0
)
Vector. Starting position of the sampler.
Name of the distribution from which to sample from.
Distribution parameters.
Covariance matrix of the proposal distribution. If sampling in 1D space, it can be instead a number.
Number of iterations of the sampler.
If using a mixture distribution, the weights given to each constituent distribution. If none given, it defaults to equal weights for all distributions.
Instead of providing names, params and weights, the user may prefer to provide a custom density function.
autocorrelation of proposals parameter, from -1 to 1, with 0 being independent proposals
A named list containing
Samples: the history of visited places (an n x d matrix, n = iterations; d = dimensions)
Proposals: the history of proposed places (an n x d matrix, n = iterations; d = dimensions). Nothing is proposed in the first iteration (the first iteration is the start value) and so the first row is NA
Acceptance Ratio: The proportion of proposals that were accepted.
As mentioned, the proposal distribution is a Normal distribution. Its mean is the current position, and its variance is equal to the sigma_prop
parameter, which defaults to the identity matrix if not specified.
This algorithm has been used to model human data in many places (e.g. Castillo et al. 2024; Dasgupta et al. 2017; Lieder et al. 2018; Zhu et al. 2022) .
Castillo L, León-Villagrá P, Chater N, Sanborn A (2024).
“Explaining the Flaws in Human Random Generation as Local Sampling with Momentum.”
PLOS Computational Biology, 20(1), 1--24.
doi:10.1371/journal.pcbi.1011739
.
Dasgupta I, Schulz E, Gershman SJ (2017).
“Where Do Hypotheses Come From?”
Cognitive Psychology, 96, 1--25.
doi:10.1016/j.cogpsych.2017.05.001
.
Lieder F, Griffiths TL, M. Huys QJ, Goodman ND (2018).
“The Anchoring Bias Reflects Rational Use of Cognitive Resources.”
Psychonomic Bulletin & Review, 25(1), 322--349.
doi:10.3758/s13423-017-1286-8
.
Zhu J, León-Villagrá P, Chater N, Sanborn AN (2022).
“Understanding the Structure of Cognitive Noise.”
PLoS Computational Biology, 18(8), e1010312.
doi:10.1371/journal.pcbi.1010312
.