diff --git a/numpyro/infer/autoguide.py b/numpyro/infer/autoguide.py index 89bcf8349..24156b9fc 100644 --- a/numpyro/infer/autoguide.py +++ b/numpyro/infer/autoguide.py @@ -889,7 +889,7 @@ def loss_fn(z): warnings.warn( "Hessian of log posterior at the MAP point is singular. Posterior" " samples from AutoLaplaceApproxmiation will be constant (equal to" - " the MAP point)." + " the MAP point). Please consider using an AutoNormal guide." ) scale_tril = jnp.where(jnp.isnan(scale_tril), 0.0, scale_tril) return LowerCholeskyAffine(loc, scale_tril)