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
Copy file name to clipboardExpand all lines: pymc_extras/inference/INLA/inla.py
+42-6Lines changed: 42 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -24,11 +24,7 @@ def fit_INLA(
24
24
25
25
Where the prior on the hyperparameters :math:`\pi(\theta)` is arbitrary, the prior on the latent field is Gaussian (and in precision form): :math:`\pi(x) = N(\mu, Q^{-1})` and the latent field is linked to the observables $y$ through some linear map.
26
26
27
-
As it stands, INLA in PyMC Extras has three main limitations:
28
-
29
-
- Does not support inference over the latent field, only the hyperparameters.
30
-
- Optimisation for :math:`\mu^*` is bottlenecked by calling `minimize`, and to a lesser extent, computing the hessian :math:`f^"(x)`.
31
-
- Does not offer sparse support which can provide significant speedups.
27
+
As it stands, INLA in PyMC Extras is currently experimental.
32
28
33
29
Parameters
34
30
----------
@@ -46,11 +42,51 @@ def fit_INLA(
46
42
If True, also return posteriors for the latent Gaussian field (currently unsupported).
0 commit comments