I have defined a custom continuous distribution, with implemented _pdf
and _cdf
methods.
For these I need to compute expensive constants (given the parameters), namely the normalization constant for the PDF and the integration constant for the CDF. These constants are computed every time any of the functions of the (frozen) random variable are evaluated, which takes a lot of time.
I was wondering if there is a way to precompute or cache/memoize these expensive constant for frozen random variables in SciPy?
Here is some minimal code of an example distribution with parameters a
and b
defined by non-normalized PDF f(x, a, b)
and its antiderivative F(x, a, b)
. The expensive functions are the norm N(a,b)
and the integration constant C(a,b)
:
from scipy.stats import rv_continuous
class Example_gen(rv_continuous):
def _norm(self, a, b):
"""Expensive function"""
return N(a, b)
def _C(self, a, b):
"""Expensive function"""
return C(a, b)
def _pdf(self, x, a, b):
return f(x, a, b) / self._norm(a, b)
def _cdf(self, x, a, b):
return (F(x, a, b) + self._C(a, b)) / self._norm(a, b)
Example = Example_gen()
There isn't. Of course, if the specific distribution you think about defines some internal functions, you came monkey-patch them to return precomputed values. But this is certainly not supported by the framework, and you're on your own if you do that.