You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Wishart has never worked correctly and produced
divergent samples. One of the reasons was that we did
not enforce the matrix to be symmetric nor positive
semi-definite.
Now, however, it is impossible to randomly sample a
valid matrix so we raise a warning that the Wishart
is basically unusable currently and to instead
use the LKJ prior which has many desriable properties.
For more discussions, see #538.
warnings.warn('The Wishart distribution can currently not be used for MCMC sampling. The probability of sampling a symmetric matrix is basically zero. Instead, please use the LKJCorr prior. For more information on the issues surrounding the Wishart see here: https://github.com/pymc-devs/pymc3/issues/538.', UserWarning)
0 commit comments