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
Here the `- logdet(σ)` is the "log absolute Jacobian", required to account for the stretching of the space.
65
+
66
+
The above requires solving a linear system, which adds some overhead. Even with the convenience of a lower triangular system, it's still not quite a efficient as a multiplication.
47
67
48
-
unif = ∫(x -> 0<x<1, Lebesgue(ℝ))
49
-
f = AffineTransform((μ=3,σ=2))
50
-
g = AffineTransform((μ=3,ω=2))
68
+
In addition to the covariance ``Σ``, it's also common to parameterize a multivariate normal by its _precision matrix_, ``Ω = Σ⁻¹``. Similarly to our use of ``σ``, we'll use ``ω`` for the lower Cholesky factor of ``Ω``.
51
69
52
-
So for example, the implementation of `StudentT(ν=1, μ=3, σ=4)` is equivalent to
0 commit comments