-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Closed
Labels
Description
It would be useful if we could model multiple independent multivariate variables in the same statement. For example, if I wanted four multivariate normal vectors with the same prior, I should be able to specify:
f = pm.MvNormal('f', np.zeros(3), np.eye(3), shape=(4,3))
but it currently returns a ValueError
complaining of non-aligned matrices.
shoyer and statwonk