Closed
Description
There are still various continuous distributions missing for v4
that need to get ported.
Here is an example of how to do this port for where aesara
does not provide a RandomVariable
(which is all of the currently missing ones): https://github.com/pymc-devs/pymc3/blob/v4/pymc3/distributions/continuous.py#L2648
Here is a list of the missing continuous ones:
-
Flat
Refactor Flat and HalfFlat distributions #4723 -
HalfFlat
Refactor Flat and HalfFlat distributions #4723 -
TruncatedNormal
Port Truncated Normal and Wald Distributions to V4 #4711 -
Wald
Port Truncated Normal and Wald Distributions to V4 #4711 -
Kumaraswamy
refactor kumaraswamy #4706 -
Laplace
refactor pareto and laplace #4691 -
AsymmetricLaplace
Refactored continuous distributions to v4 (AsymmetricLaplace, HalfStudentT, ExGaussian, Interpolated) #4746 -
StudentT
Refactor Student T Distribution #4694 -
Pareto
refactor pareto and laplace #4691 -
ChiSquared
Refactoring the ChiSquared distribution #4695 -
HalfStudentT
Refactored continuous distributions to v4 (AsymmetricLaplace, HalfStudentT, ExGaussian, Interpolated) #4746 -
ExGaussian
Refactored continuous distributions to v4 (AsymmetricLaplace, HalfStudentT, ExGaussian, Interpolated) #4746 -
SkewNormal
Refactor Rice and Skew Normal distribution #4705 -
Rice
Refactor Rice and Skew Normal distribution #4705 -
LogitNormal
Refactor LogitNormal #4703 -
Interpolated
Refactored continuous distributions to v4 (AsymmetricLaplace, HalfStudentT, ExGaussian, Interpolated) #4746 -
Moyal
refactor Moyal distribution #4704 -
DensityDist
Refactor DensityDist into v4 #5026
And the missing multivariate ones:
-
MvStudentT
Make MvStudentT distribution v4 compatible #4731 -
DirichletMultinomial
Port Dirichlet Multinomial to v4 #4758 -
Wishart
Refactored Wishart and MatrixNormal distribution #4777 -
LKJCorr
LKJCorr and LKJCholeskyCov refactor #5382 -
LKJCholeskyCov
LKJCorr and LKJCholeskyCov refactor #5382 -
MatrixNormal
Refactored Wishart and MatrixNormal distribution #4777 -
KroneckerNormal
[WIP] Porting kroneckernormal distribution to v4 #4774 -
CAR
CAR random variables #4596
Would be very important to add these to get an alpha out.
See @ricardoV94's comment below for a step-by-step guide on how to port a distribution.