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
This is not a priority issue, but worth flagging. A potential fix would probably involve the model looking at its error model, and making type specification e.g. PoissonError would specify a concrete integer type. That would be slightly awkward at the moment.
The text was updated successfully, but these errors were encountered:
Could you flesh this out a bit please sam? In particular what the performance implications are (given for most performance critical things you are passing data?)
Currently generating data, e.g. using
data = missing
patterns returns aVector{Union{Missing, Real}}
type object. This is known to be poorly performant becauseReal
is an abstract type ( https://docs.julialang.org/en/v1/manual/performance-tips/#man-performance-abstract-container ).This is not a priority issue, but worth flagging. A potential fix would probably involve the model looking at its error model, and making type specification e.g.
PoissonError
would specify a concrete integer type. That would be slightly awkward at the moment.The text was updated successfully, but these errors were encountered: