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
The current implementation of the continuous transition node allows only structured factorization between the states, i.e.,
constraints =@constraintsbeginq(x, y, h, Λ) =q(x, y)q(h)q(Λ)
end;
While this factorization is beneficial for state space models (as it introduces coupling between states), it doesn't allow one of $x$ or $y$ to be observed (clamped). The implementation of these (MF) rules needs to be added, which will also allow the following factorization:
constraints =@constraintsbeginq(x, y, h, Λ) =q(x)q(y)q(h)q(Λ)
end;
The text was updated successfully, but these errors were encountered:
The current implementation of the continuous transition node allows only structured factorization between the states, i.e.,
While this factorization is beneficial for state space models (as it introduces coupling between states), it doesn't allow one of$x$ or $y$ to be observed (clamped). The implementation of these (MF) rules needs to be added, which will also allow the following factorization:
The text was updated successfully, but these errors were encountered: