Replies: 1 comment 2 replies
-
You'd basically just have to extend the |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The
MultivariateNormal
distribution allows to pass a mean in the form of a matrix to represent a batch of multivariate normals (as indicated in the class description). The__mul__
method, however, only allows multiplication of the distribution by a scalar.I'm interested in multiplying each of the multivariate normals in the batch by a different scalar.
How would you do that?
Beta Was this translation helpful? Give feedback.
All reactions