What log_lik measures. For family in
{normal, binary, cbin, poisson, ordinal} the stored
pointwise log-likelihood is the exact family-specific Y density on
the response scale, so elpd_loo is directly comparable to a
loo() output from Stan / brms fit to the same family. For
the rank likelihood frn the exact marginal
needs GHK Monte Carlo (Halton sequence); on the longitudinal
lame() path you can opt in with log_lik_method =
"observed_ghk", on the cross-sectional ame() path the
fallback is the augmented-Z normal approximation (with a one-time
warning). Inspect fit$log_lik_method on any fit to see which
branch was used.
Chunked log-lik portability. When fit with
save_log_lik = "chunked", the on-disk chunk files default to
tempdir(), which is cleared at the end of the R session.
If you intend to saveRDS() the fit and reload it in a fresh
session, supply an explicit persistent log_lik_path (e.g.
"./loglik_chunks") so the chunks survive the round trip.