pymc.InverseGamma.dist#
- classmethod InverseGamma.dist(alpha=None, beta=None, mu=None, sigma=None, *args, **kwargs)[source]#
Create a tensor variable corresponding to the cls distribution.
- Parameters:
- dist_paramsarray_like
The inputs to the RandomVariable Op.
- shape
int,tuple,Variable, optional A tuple of sizes for each dimension of the new RV.
- return_next_rngbool, default
False If
True, return a(next_rng, rv)tuple instead of just the random variable. The default is to discardnext_rng.- **kwargs
Keyword arguments that will be forwarded to the PyTensor RV Op. Most prominently:
sizeordtype.
- Returns:
- rv
TensorVariable The created random variable tensor. If
return_next_rngisTrue, returns a(next_rng, rv)tuple instead.
- rv