Skip to content

Commit

Permalink
Minor fix for docs (#181)
Browse files Browse the repository at this point in the history
  • Loading branch information
neerajprad authored and jpchen committed May 31, 2019
1 parent 7c9e8d2 commit 4bc1a35
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/source/distributions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ Base Distribution

Distribution
------------
.. autoclass:: numpyro.distributions.Distribution
.. autoclass:: numpyro.distributions.distribution.Distribution
:members:
:undoc-members:
:show-inheritance:
:member-order: bysource

TransformedDistribution
-----------------------
.. autoclass:: numpyro.distributions.TransformedDistribution
.. autoclass:: numpyro.distributions.distribution.TransformedDistribution
:members:
:undoc-members:
:show-inheritance:
Expand Down
2 changes: 1 addition & 1 deletion numpyro/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ def fori_collect(n, body_fun, init_val, transform=identity, progbar=True, **prog
effect of collecting values from the loop body. In addition, this allows for
post-processing of these samples via `transform`, and progress bar updates.
Note that, in some cases, `progbar=False` can be faster, when collecting a
lot of samples.
lot of samples. Refer to example usage in :func:`~numpyro.mcmc.hmc`.
:param int n: number of times to run the loop body.
:param body_fun: a callable that takes a collection of
Expand Down

0 comments on commit 4bc1a35

Please sign in to comment.