Skip to content

Commit

Permalink
Remove default None argument for concentration of Wishart distribut…
Browse files Browse the repository at this point in the history
…ion.
  • Loading branch information
tillahoffmann committed May 10, 2024
1 parent 28a9afe commit 0b78fe8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions numpyro/distributions/continuous.py
Original file line number Diff line number Diff line change
Expand Up @@ -2654,7 +2654,7 @@ class Wishart(TransformedDistribution):

def __init__(
self,
concentration=None,
concentration,
scale_matrix=None,
rate_matrix=None,
scale_tril=None,
Expand Down Expand Up @@ -2748,7 +2748,7 @@ class WishartCholesky(Distribution):

def __init__(
self,
concentration=None,
concentration,
scale_matrix=None,
rate_matrix=None,
scale_tril=None,
Expand Down

0 comments on commit 0b78fe8

Please sign in to comment.