Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated pymc.step_methods.slicer.Slice docstring #7322

Merged
merged 2 commits into from
May 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 9 additions & 7 deletions pymc/step_methods/slicer.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,16 @@ class Slice(ArrayStepShared):

Parameters
----------
vars: list
vars : list, optional
List of value variables for sampler.
w: float
Initial width of slice (Defaults to 1).
tune: bool
Flag for tuning (Defaults to True).
model: PyMC Model
Optional model for sampling step. Defaults to None (taken from context).
w : float, default 1.0
Initial width of slice.
tune : bool, default True
Flag for tuning.
model : Model, optional
Optional model for sampling step. It will be taken from the context if not provided.
iter_limit : int, default np.inf
Maximum number of iterations for the slice sampler.

"""

Expand Down
Loading