Hi nimble community,
I’m currently working on a large life cycle model and encountered an issue I’ve seen mentioned in this group before :
[Warning] There are 131 individual pWAIC values that are greater than 0.4. This may indicate that the WAIC estimate is unstable (Vehtari et al., 2017), at least in cases without grouping of data nodes or multivariate data nodes.
To address this, I’ve already run the model with an extended burn-in phase and a large number of iterations, suspecting convergence might be the root of the problem. However, the warning persists.
My first question is : Is there a way to pinpoint the specific data nodes responsible for pWAIC values exceeding 0.4? The getWAICdetails() function doesn’t seem to provide this information, but it would be very helpful for debugging.
To try debugging this here’s an overview of the types of data nodes in my model:
for (t in 1:C) {
Nsex[t, 1:2] ~ dmulti(size = Tot[t],
prob = Psex[t, 1:2])
}
- Nsex[t] is the number of individuals in each sex.
- Tot[t] is the total number of individuals, treated as a constant.
for (t in 1:C) {
for (l in 1:L) {
Scales[l, t] ~
dnorm(mean = Mu[t], sd = Sd[t])
}
}
- Scales[l, t] represents individual scale lengths over time.
- These values are assumed to follow a normal size distribution defined by Mu[t] and Sd[t].
I suspect the size structure nodes might be causing the issue due to their multivariate nature. From what I’ve read, grouping multivariate nodes for WAIC calculation could be a solution.
My second question is : Would grouping multivariate nodes be a good approach here, or should I abandon WAIC entirely and use another metric like PSIS-LOO, as recommended in the literature ?
Thanks in advance for your insights and advice !
Have a great day,
Eliot B.
--
You received this message because you are subscribed to the Google Groups "nimble-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to nimble-users...@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/nimble-users/ed406a5d-4866-41e3-8efa-d2175e754636n%40googlegroups.com.