Example 2

The purpose of this example is to develop a likelihood function for retrieval time using an evidence accumulation modeld called Log Normal Race model.

Generate Simulated Data

The first step is to develop a model and generate simulated data based on Example 1. The code for Example 1 is reproduced below:

using ACTRModels
using SequentialSamplingModels
using Random
using Plots

Random.seed!(87545)
# create chunks of declarative knowledge
chunks = [Chunk(;name=:Bob, department=:accounting),
    Chunk(;name=:Alice, department=:HR)]

# initialize declarative memory
declarative = Declarative(memory=chunks)

# specify model parameters: partial matching, noise, mismatch penalty, activation noise
Θ = (mmp=true, noise=true, δ=.50, s=.20)

# create an ACT-R object with activation noise and partial matching
actr = ACTR(;declarative, Θ...)

# retrieve a chunk associated with accounting
chunk = retrieve(actr; department=:accounting)

# compute retrieval time
rt = compute_RT(actr, chunk)
0.85865582177504

Compute Log Likelihood

Now that we have simulated data, we can compute the log likelihood of retrieving the chunk after the observed number of seconds. First, we need to identify the chunk index:

Chunk Index

# index of retrieved chunk
chunk_idx = find_index(chunk)
1

Compute Mean Activation

Next, we will compute activation with the function compute_activation! and extract a vector of mean activations for the Log Normal Race.

# compute activation for each chunk
compute_activation!(actr; department=:accounting)
# get mean activation
μ = get_mean_activations(actr)
2-element Vector{Float64}:
  0.0
 -0.5

Compute Activation Standard Deviation

The standard deviation for activation is computed as follows

# standard deviation
σ = Θ.s * pi / sqrt(3)
0.3627598728468436

Construct Distribution Object

Next, we will create a distribution object for the Log Normal Race model as follows

# lognormal race distribution object
dist = LNR(;ν=-μ, σ=fill(σ, 2), τ=0.0)
LNR
┌───────────┬──────────────────────────────────────────┐
│ Parameter │ Value                                    │
├───────────┼──────────────────────────────────────────┤
│ ν         │ [-0.0, 0.5]                              │
│ σ         │ [0.3627598728468436, 0.3627598728468436] │
│ τ         │  0.00                                    │
└───────────┴──────────────────────────────────────────┘

Compute Log Likelihood

Finally, we can use logpdf to compute the log likelihood of the retrieved chunk:

# log pdf of retrieval time
logpdf(dist, chunk_idx, rt)
0.12250738399636082

PDF Overlay

One way to verify the likelihood function works is to overlay the PDF on a histogram of simulated data (both based on the same parameters). As expected, the orange line, which represents the PDF, fits the grey histogram well.

histogram(dist; xlims=(0,2.5))
plot!(dist; t_range=range(0, 2.5, length=100))
Example block output

References

Fisher, C. R., Houpt, J. W., & Gunzelmann, G. (2022). Fundamental tools for developing likelihood functions within ACT-R. Journal of Mathematical Psychology, 107, 102636.

Rouder, J. N., Province, J. M., Morey, R. D., Gomez, P., & Heathcote, A. (2015). The lognormal race: A cognitive-process model of choice and latency with desirable psychometric properties. Psychometrika, 80, 491-513.