Closed
Description
Models that use the Wishart as a prior currently fail with valid parameters. For example,
s = pm.Wishart('s', 4, 3, np.eye(3))
Fails with the following:
TypeError: Wrong number of dimensions: expected 0, got 2 with shape (3, 3)
I've tried a variety of 3x3 matrices, but all yield similar errors.
PS - I have a pull request that removed the redundant second parameter.