This Auto-correlated Bayesian Sampler model (ABS, Zhu et al. 2024) is developed by Zhu.
Zhu J, Sundh J, Spicer J, Chater N, Sanborn AN (2024). “The Autocorrelated Bayesian Sampler: A Rational Process for Probability Judgments, Estimates, Confidence Intervals, Choices, Confidence Judgments, and Response Times.” Psychological Review, 131(2), 456--493. doi:10.1037/rev0000427 .
samplr::CoreABS
-> Zhu23ABS
width
the standard deviation of the proposal distribution for MC3.
lambda
the rate parameter of the Erlang distribution for decision time.
new()
Create a new 'Zhu23ABS' object.
Zhu23ABS$new(
width,
n_chains,
nd_time,
s_nd_time,
lambda,
distr_name = NULL,
distr_params = NULL,
custom_distr = NULL,
custom_start = NULL
)
width
a numeric value of the standard deviation of the proposal distribution for MC3.
n_chains
an integer of the number of chains for the sampler.
nd_time
a numeric value of the non-decision time (in seconds). When s_nd_time
is not 0, nd_time
represents the lower bound of the non-decision time.
s_nd_time
a numeric value of the inter-trial-variability of the non-decision time (in seconds).
lambda
a numeric value of the rate parameter of the Erlang distribution for decision time.
distr_name
a character string indicating the type of the posterior hypothesis distribution.
distr_params
a numeric vector of the additional parameters for the posterior hypothesis distribution.
custom_distr
a list of functions that define the posterior hypothesis distribution.
custom_start
a numeric value of the starting point if "custom_distr" is provided.
zhuabs <- Zhu23ABS$new(
width = 1, n_chains = 5, nd_time = 0.3, s_nd_time = 0.5,
lambda = 10, distr_name = 'norm', distr_params = 1
)
simulate()
Simulate the ABS model.
stopping_rule
a character string indicating the stopping rule of ABS to be applied. Possible values are "fixed"
and "relative"
. See also Details
.
start_point
a numeric vector setting the start point of each trial for the sampler. By default, it's set to NA
, indicating that the starting point of the first trial is a random point from the posterior of hypotheses, and the starting points of subsequent trials are set to the last sample of the previous trial. For more detailed information, please refer to the vignette "Simulations of the Autocorrelated Bayesian Sampler".
...
further arguments passed to the ABS model, see also Details
.
The ABS model has two types of stopping rules: fixed and relative. The fixed stopping rule means that a fixed number of samples are drawn to complete the tasks such as estimations and confidence intervals. This rule applies to tasks such as estimation tasks. On the other hand, the relative stopping rule means that the model counts the difference in evidence between the two hypotheses, and terminates the sampling process whenever the accumulated difference exceeds a threshold. This rule applies to tasks such as two-alternative force choice tasks.
When the stopping rule
is "fixed"
, the following arguments are required:
n_sample
an integer of the fixed number of samples for each trial.
trial_stim
a numeric vector of the stimulus of each trial.
When the stopping rule
is "relative"
, the following arguments are required:
delta
an integer of the relative difference between the number of samples supporting each hypothesis.
dec_bdry
a numeric value of the decision boundary that separates the posterior hypothesis distribution.
discrim
a numeric value of the stimuli discriminability.
trial_stim
a factor that indicates the stimuli of each trial. It only consists of either one level or two levels. By definition, level 1 represents the stimulus below the decision boundary, while level 2 represents the stimulus above the decision boundary.
prior_on_resp
a numeric vector for the Beta prior on responses. Defaults to c(1,1)
representing the distribution Beta(1,1)
.
prior_depend
a boolean variable that control whether the prior on responses changes regarding the last stimulus. Defaults to TRUE
. Please refer to the vignette for more information.
max_iterations
an integer of the maximum length of the MC3 sampler. Defaults to 1000. The program will stop the sampling process after the length of the sampling sequence reaches to this limitation.
No values will be return after running this method, but the field sim_results
will be updated instead. If the stopping rule is "fixed", simulation_results
will be a data frame with five columns:
trial: The index of trials;
samples: The samples of ABS sampler for the trial;
stimulus: The stimuli of the experiment;
rt: The response time;
point_est: The response of point estimation;
On the other hand, if the stopping rule is "relative", sim_results
will be a data frame with eight columns:
trial: The index of trials;
samples: The samples of ABS sampler for the trial;
response: The response predicted by ABS;
stimulus: The stimuli of the experiment;
accuracy: Whether the response is the same as the feedback. 0 represents error, and 1 represents correct;
rt: The response time, including both the non-decision and the decision time;
confidence: The confidence of the response;
point_est: The response of point estimation.
trial_stim <- round(runif(5, 10, 50))
zhuabs$simulate(stopping_rule='fixed', n_sample = 5, trial_stim = trial_stim)
zhuabs$sim_results
zhuabs$reset_sim_results()
trial_stim <- factor(sample(c('left', 'right'), 5, TRUE))
zhuabs$simulate(stopping_rule='relative',
delta = 4, dec_bdry = 0,
discrim = 1, trial_stim = trial_stim
)
zhuabs$sim_results
confidence_interval()
This function calculates the confidence interval of the simulate
method's results when the "fixed" stopping rule was used.
## ------------------------------------------------
## Method `Zhu23ABS$new`
## ------------------------------------------------
zhuabs <- Zhu23ABS$new(
width = 1, n_chains = 5, nd_time = 0.3, s_nd_time = 0.5,
lambda = 10, distr_name = 'norm', distr_params = 1
)
## ------------------------------------------------
## Method `Zhu23ABS$simulate`
## ------------------------------------------------
trial_stim <- round(runif(5, 10, 50))
zhuabs$simulate(stopping_rule='fixed', n_sample = 5, trial_stim = trial_stim)
zhuabs$sim_results
#> trial samples stimulus rt
#> 1 1 10.71436, 11.32342, 10.08027, 10.08027, 10.44311 11 0.9647324
#> 2 2 11.75203, 16.40006, 16.40006, 16.40006, 15.62573 18 1.173725
#> 3 3 17.06807, 18.64487, 18.79188, 18.79188, 18.79188 27 1.206355
#> 4 4 18.79188, 19.96179, 20.35343, 20.35343, 20.35343 46 0.8200252
#> 5 5 20.35343, 20.35343, 21.36663, 22.29673, 22.40992 38 0.9717995
#> point_est
#> 1 10.44311
#> 2 15.62573
#> 3 18.79188
#> 4 20.35343
#> 5 22.40992
zhuabs$reset_sim_results()
trial_stim <- factor(sample(c('left', 'right'), 5, TRUE))
zhuabs$simulate(stopping_rule='relative',
delta = 4, dec_bdry = 0,
discrim = 1, trial_stim = trial_stim
)
zhuabs$sim_results
#> trial
#> 1 1
#> 2 2
#> 3 3
#> 4 4
#> 5 5
#> samples
#> 1 0.49587356, -0.05342608, -0.11812319, 1.73693281, -0.18590657, 0.71409772, 0.71409772, 0.49479997, 0.30665854, 0.30665854
#> 2 0.3066585, 0.4708692, 1.0550188
#> 3 0.9777936, 0.2758314, 0.7338352
#> 4 -1.02347985, 0.73383516, 0.46384031, 0.29990926, -0.39044486, 0.09480057, -0.69683374, 0.22463493, 0.66416985
#> 5 0.13688097, -0.34021143, -0.51120341, 0.55400757, 0.11315945, -2.19737611, -0.31693912, -0.06473229, 1.89186917, 0.54105431, 0.54105431, 0.09133600, -1.50403937, -0.05243803, -0.77445774, 0.20864032, -0.28063515, 0.46396545, 0.46396545, -0.37811108, 0.08968652, 1.40999070, -1.41699856, -1.84695250, -0.57880217, -1.15428973, -0.39916389
#> response stimulus accuracy rt confidence point_est
#> 1 right right 1 1.436181 0.6666667 0.3066585
#> 2 right right 1 1.339545 0.8333333 1.0550188
#> 3 right right 1 1.112490 0.8333333 0.7338352
#> 4 right left 0 1.426315 0.6666667 0.6641698
#> 5 left right 0 2.731341 0.5666667 -0.3991639
## ------------------------------------------------
## Method `Zhu23ABS$confidence_interval`
## ------------------------------------------------
zhuabs$confidence_interval(conf_level = 0.9)
#> Warning: The simulation results were geneated with the relative stopping rule.