ThijsvdLaar
ThijsvdLaar
Currently, the cutoff (e.g. through clamp) epsilon (e.g. tiny) values are set as constants. Ultimately, it should be easy for a user to overwrite these values.
This blogpost from Lyndon White mentions several antipatterns for Julia code: https://white.ucc.asn.au/2020/04/19/Julia-Antipatterns.html (thanks @bauglir for pointing this out). Some of the antipatterns mentioned here are also present in the FL...
In some situations, algorithms can be efficiently implemented by recursive updates that directly set marginals instead of sending messages. One example is nonlinear estimation with the unscented Kalman filter, where...
Fixes #215
Fixes #212
Fixes #216
I'm looking for a way to insert "probes" into update rules such that custom information can be passed back to the `InferenceResult` object. This would allow for a user to...