Skip to content

Commit 4a41789

Browse files
authored
fix numpy docstring for function assign_step_methods (#5530)
* fixed numpy docstring for function assign_step_methods * fixed numpy docstring for function assign_step_methods
1 parent 2816b69 commit 4a41789

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pymc/sampling.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -181,14 +181,14 @@ def assign_step_methods(model, step=None, methods=STEP_METHODS, step_kwargs=None
181181
Parameters
182182
----------
183183
model : Model object
184-
A fully-specified model object
185-
step : step function or vector of step functions
184+
A fully-specified model object.
185+
step : step function or iterable of step functions, optional
186186
One or more step functions that have been assigned to some subset of
187187
the model's parameters. Defaults to ``None`` (no assigned variables).
188-
methods : vector of step method classes
188+
methods : iterable of step method classes, optional
189189
The set of step methods from which the function may choose. Defaults
190190
to the main step methods provided by PyMC.
191-
step_kwargs : dict
191+
step_kwargs : dict, optional
192192
Parameters for the samplers. Keys are the lower case names of
193193
the step method, values a dict of arguments.
194194

0 commit comments

Comments
 (0)