Skip to content

Commit 13649d0

Browse files
committed
Addressed review comments to changes to GWR docstring
1 parent e5e794b commit 13649d0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

pymc/distributions/timeseries.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -185,19 +185,19 @@ class GaussianRandomWalk(distribution.Continuous):
185185
186186
Parameters
187187
----------
188-
mu : TensorVariable, optional
188+
mu : tensor_like of float, default 0
189189
innovation drift, defaults to 0.0
190190
For vector valued `mu`, first dimension must match shape of the random walk, and
191191
the first element will be discarded (since there is no innovation in the first timestep)
192-
sigma : TensorVariable, optional
192+
sigma : tensor_like of float, optional
193193
`sigma` > 0, innovation standard deviation (only required if `tau` is not specified)
194194
For vector valued `sigma`, first dimension must match shape of the random walk, and
195195
the first element will be discarded (since there is no innovation in the first timestep)
196-
tau : TensorVariable, optional
196+
tau : tensor_like of float, optional
197197
`tau` > 0, innovation precision (only required if `sigma` is not specified)
198198
For vector valued `tau`, first dimension must match shape of the random walk, and
199199
the first element will be discarded (since there is no innovation in the first timestep)
200-
init : distribution, optional
200+
init : pymc.Distribution, optional
201201
distribution for initial value (Defaults to Flat())
202202
"""
203203

@@ -250,7 +250,7 @@ def random(self, point=None, size=None):
250250
251251
Parameters
252252
----------
253-
Point : dict, optional
253+
point : dict or Point, optional
254254
Dict of variable values on which random values are to be
255255
conditioned (uses default point if not specified).
256256
size : int, optional

0 commit comments

Comments
 (0)