Skip to content

Add rng_fn to CAR/ICAR #7713

@jessegrabowski

Description

@jessegrabowski
Member

Description

I was talking to @theorashid who linked me to this case study of CAR priors. It seems like they're just MvNormals, but with degenerate covariance matrices. We can now sample from such distributions use the new method="eig" or method="svd" argument. So a potential rng_fn would just make an appropriate MvNormal with the method argument set, then return it's rng_fn.

Looking at the logp method for these distributions, it seems like it's just using the eig method; so we might be able to simplify these to wrappers around MvNormalRV that just constructs the mean/covariance and sets the appropriate method, but that's a step beyond what this PR is asking for.

Activity

ricardoV94

ricardoV94 commented on Mar 9, 2025

@ricardoV94
Member

Plus some special logic for sparse covariances that would be nice to support in MvNormal as well?

jessegrabowski

jessegrabowski commented on Mar 9, 2025

@jessegrabowski
MemberAuthor

A hidden internal SparseMvNormal, in the vein of PrecisionMvNormal would be nice. We could rewrite to it when we see the covariance is sparse.

One issue I foresee is that we don't have sparse implementations of relevant algorithms (Cholesky, Eig, SVD, and Solve). I know sparse cholesky exists, because @bwengals was telling me it's a nice one for GP stuff. For the others I have no idea.

But also beyond the scope of this issue

Muhammad-Rebaal

Muhammad-Rebaal commented on Mar 11, 2025

@Muhammad-Rebaal

Hi @jessegrabowski !
Hope you are fine !
If no one is working on this issue , could you assign this to me I'd like to solve this.
Thank You !

ricardoV94

ricardoV94 commented on Mar 11, 2025

@ricardoV94
Member

We don't assign issues, you can just open a PR

Muhammad-Rebaal

Muhammad-Rebaal commented on Mar 11, 2025

@Muhammad-Rebaal

We don't assign issues, you can just open a PR

Ok sure thing I'll open a draft one.

added a commit that references this issue on Jul 30, 2025
asifzubair

asifzubair commented on Jul 30, 2025

@asifzubair
Contributor

Hi @jessegrabowski , @ricardoV94 , I started this PR ( #7879 ) to address this issue. Please note I've only implemented ICARRV ( and corresponding test ) for now. I was hoping to get your reviews and then the implementation for CARRV would be easier. Please let me know your thoughts. Thank you 🙏

ricardoV94

ricardoV94 commented on Aug 11, 2025

@ricardoV94
Member

Just because we can, should we? Are these draws valid in any meaningful sense? Are they useful?

jessegrabowski

jessegrabowski commented on Aug 11, 2025

@jessegrabowski
MemberAuthor

It would enable prior predictive checks for ICAR models, which would be nice.

ricardoV94

ricardoV94 commented on Aug 11, 2025

@ricardoV94
Member

But are they valid/meaningful? This is an improper prior IIUC

ricardoV94

ricardoV94 commented on Aug 11, 2025

@ricardoV94
Member

Is it something like that? https://stats.stackexchange.com/a/159322

And if valid, should we use svd specifically, instead of eigh?

jessegrabowski

jessegrabowski commented on Aug 11, 2025

@jessegrabowski
MemberAuthor

Yeah I might have missed some details.

To merge the PR, I would want to see that the prior and the no-data MCMC gives the same answer

Is it something like that? https://stats.stackexchange.com/a/159322

Yes, that was my understanding when I wrote the issue

ricardoV94

ricardoV94 commented on Aug 11, 2025

@ricardoV94
Member

I'm even more skeptical you can use mcmc for any source of truth: https://stats.stackexchange.com/questions/211917/sampling-from-an-improper-distribution-using-mcmc-and-otherwise

MCMC wmith improper flat will not give you a flat distribution, it can't without infinite bits of precision (and infinite runtime I guess)

ricardoV94

ricardoV94 commented on Aug 11, 2025

@ricardoV94
Member

Yes, that was my understanding when I wrote the issue

Also would need to check that calling numpy with those other methods achieves that goal. Implementation/explanation seems to suggest padding with zeros specifically, I didn't bother to read the formula to see if ignoring this detail would change anything.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

      Development

      Participants

      @asifzubair@ricardoV94@jessegrabowski@Muhammad-Rebaal

      Issue actions

        Add `rng_fn` to CAR/ICAR · Issue #7713 · pymc-devs/pymc