Skip to content

Commit

Permalink
DOC
Browse files Browse the repository at this point in the history
  • Loading branch information
andyfaff committed Oct 28, 2024
1 parent e2536a9 commit 2a0b394
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/emcee/ensemble.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,8 @@ class EnsembleSampler(object):
names of individual parameters or groups of parameters. If
specified, the ``log_prob_fn`` will recieve a dictionary of
parameters, rather than a ``np.ndarray``.
rng (Optional):
int, :class:`np.random.Generator`, used for reproducibility.
"""

Expand All @@ -89,7 +91,7 @@ def __init__(
vectorize=False,
blobs_dtype=None,
parameter_names: Optional[Union[Dict[str, int], List[str]]] = None,
rng = None,
rng=None,
# Deprecated...
a=None,
postargs=None,
Expand Down

0 comments on commit 2a0b394

Please sign in to comment.