Open
Description
In many cases, we don't need to compute all the factors of a pdf/logpdf:
- In likelihoods, we can ignore any factors not involving the parameters (e.g. the factorial in the Poisson)
- Many sampling techniques don't require computing the normalisation constant, i.e. factors not involving the point at which the density is evaluated (e.g. the Bessel function in the von Mises distribution)
- Posteriors are typically only known up to proportionality, so we would only need the prior (ignoring the normalisation constant), and the likelihood (ignoring non-parameter factors)
It would be good to have a consistent interface for all of this: we might also want to think about how this relates to autodiff functionality.