Skip to content

Commit

Permalink
Used tensor_like in the normal distribution docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
sagartomar committed Feb 19, 2022
1 parent 03ee596 commit fedd5c5
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions pymc/distributions/continuous.py
Original file line number Diff line number Diff line change
Expand Up @@ -525,12 +525,12 @@ class Normal(Continuous):
Parameters
----------
mu : float or array_like or TensorVariable, default 0
mu : tensor_like of float, default 0
Mean.
sigma : float or array_like or TensorVariable, optional
sigma : tensor_like of float, optional
Standard deviation (sigma > 0) (only required if tau is not specified).
Defaults to 1 if neither sigma nor tau is specified.
tau : float or array_like or TensorVariable, optional
tau : tensor_like of float, optional
Precision (tau > 0) (only required if sigma is not specified).
Defaults to 1 if neither sigma nor tau is specified.
Expand Down Expand Up @@ -576,12 +576,12 @@ def logcdf(value, mu, sigma):
Parameters
----------
value : float or ndarray or TensorVariable
value : tensor_like of float
Value(s) for which log CDF is calculated. If the log CDF for multiple
values are desired the values must be provided in a numpy array or `TensorVariable`.
mu : float or array_like or TensorVariable
Mean. Defaults to 0.
sigma : float or array_like or TensorVariable
mu : tensor_like of float
Mean.
sigma : tensor_like of float
Standard deviation (sigma > 0).
Returns
Expand Down

0 comments on commit fedd5c5

Please sign in to comment.