@@ -525,12 +525,12 @@ class Normal(Continuous):
525
525
526
526
Parameters
527
527
----------
528
- mu : float or array_like or TensorVariable , default 0
528
+ mu : tensor_like of float , default 0
529
529
Mean.
530
- sigma : float or array_like or TensorVariable , optional
530
+ sigma : tensor_like of float , optional
531
531
Standard deviation (sigma > 0) (only required if tau is not specified).
532
532
Defaults to 1 if neither sigma nor tau is specified.
533
- tau : float or array_like or TensorVariable , optional
533
+ tau : tensor_like of float , optional
534
534
Precision (tau > 0) (only required if sigma is not specified).
535
535
Defaults to 1 if neither sigma nor tau is specified.
536
536
@@ -576,12 +576,12 @@ def logcdf(value, mu, sigma):
576
576
577
577
Parameters
578
578
----------
579
- value : float or ndarray or TensorVariable
579
+ value : tensor_like of float
580
580
Value(s) for which log CDF is calculated. If the log CDF for multiple
581
581
values are desired the values must be provided in a numpy array or `TensorVariable`.
582
- mu : float or array_like or TensorVariable
583
- Mean. Defaults to 0.
584
- sigma : float or array_like or TensorVariable
582
+ mu : tensor_like of float
583
+ Mean.
584
+ sigma : tensor_like of float
585
585
Standard deviation (sigma > 0).
586
586
587
587
Returns
0 commit comments