Skip to content

Commit

Permalink
Update pymc3/distributions/multivariate.py
Browse files Browse the repository at this point in the history
Co-authored-by: Ricardo Vieira <28983449+ricardoV94@users.noreply.github.com>
  • Loading branch information
kc611 and ricardoV94 authored Jun 19, 2021
1 parent fcfec4c commit 2f9a356
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pymc3/distributions/multivariate.py
Original file line number Diff line number Diff line change
Expand Up @@ -802,8 +802,8 @@ def dist(cls, nu, V, *args, **kwargs):
"https://github.com/pymc-devs/pymc3/issues/538.",
UserWarning,
)
nu = at.as_tensor_variable(nu)
V = at.as_tensor_variable(V)
nu = at.as_tensor_variable(intX(nu))
V = at.as_tensor_variable(floatX(V))

# mean = nu * V
# p = V.shape[0]
Expand Down

0 comments on commit 2f9a356

Please sign in to comment.