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
As a reminder this is caused by the inference expecting Int valued returns but instead getting caught by a BigInt. This is possible with latent processes in the log domain which gets exp transformed and then linked with a neg binomial or Poisson distribution e.g.
julia>typemax(Int) |> log
# 43.66827237527655
We've tried a few approaches to stop this eg #492 .
This issue is about trying a TransformObservationModel composition with the usual obs processes to implement:
$$x \to - \log ( e^{-C} + e^{-x})$$
Where $C$ is a large float. In julia this is
using LogExpFunctions
const C = some_big_number
x ->-logaddexp(-C, -x)
The text was updated successfully, but these errors were encountered:
As a reminder this is caused by the inference expecting
Int
valued returns but instead getting caught by aBigInt
. This is possible with latent processes in the log domain which getsexp
transformed and then linked with a neg binomial or Poisson distribution e.g.We've tried a few approaches to stop this eg #492 .
This issue is about trying a
TransformObservationModel
composition with the usual obs processes to implement:Where$C$ is a large float. In julia this is
The text was updated successfully, but these errors were encountered: