JasonPekos / TuringPosteriorDB.jl

MIT License
0 stars 0 forks source link

Optimize models with arrays as data? #12

Open JasonPekos opened 3 months ago

JasonPekos commented 3 months ago

Some models provide data in NxM arrays, e.g. the IRT model has (presumably participant x question) response data:

data {
  int<lower=0> I;
  int<lower=0> J;
  array[I, J] int<lower=0, upper=1> y;
}

Currently this is implemented like this:

for i in 1:I
    y[i,:] ~ arraydist([BernoulliLogit(a[i] .* (theta[j] .- b[i])) for j in 1:J])
end

But I feel like this isn't optimal. Leaving this here to revisit later.

JasonPekos commented 3 months ago

See also: dogs.