You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
terminate called after throwing an instance of 'std::domain_error'
what(): Input to cdf_inverse must be in [0, 1].
Aborted (core dumped)
and Kima stops running, why does it happen? Does it mean something wrong with my priors definition to make the cdf_inverse to have a value outside the [0,1] interval?
The text was updated successfully, but these errors were encountered:
That seems likely. In some rare cases, instead of a bug on your part, it
can happen for numerical reasons when the hyperparameters are perturbed by
a large amount, so the U(0, 1) representation of a parameter suddenly
becomes 0 or 1. If you become certain that the latter explanation is right,
you can put the RJObject proposal in a try/catch block:
try
{
logH += objects.perturb(rng);
}
catch(...)
{
}
On Thu, Jan 3, 2019 at 5:22 AM João Camacho ***@***.***> wrote:
Sometimes (rarely) I happen to get
terminate called after throwing an instance of 'std::domain_error'
what(): Input to cdf_inverse must be in [0, 1].
Aborted (core dumped)
and Kima stops running, why does it happen? Does it mean something wrong
with my priors definition to make the cdf_inverse to have a value outside
the [0,1] interval?
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#55>, or mute the thread
<https://github.com/notifications/unsubscribe-auth/ABgVOhap5Xc43O2qQGVh3b4oCmlIIM0mks5u_NyngaJpZM4Zm4kf>
.
Sometimes (rarely) I happen to get
and Kima stops running, why does it happen? Does it mean something wrong with my priors definition to make the cdf_inverse to have a value outside the [0,1] interval?
The text was updated successfully, but these errors were encountered: