Skip to content

Commit 4bc1a35

Browse files
neerajpradjpchen
authored andcommitted
Minor fix for docs (#181)
1 parent 7c9e8d2 commit 4bc1a35

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/source/distributions.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ Base Distribution
33

44
Distribution
55
------------
6-
.. autoclass:: numpyro.distributions.Distribution
6+
.. autoclass:: numpyro.distributions.distribution.Distribution
77
:members:
88
:undoc-members:
99
:show-inheritance:
1010
:member-order: bysource
1111

1212
TransformedDistribution
1313
-----------------------
14-
.. autoclass:: numpyro.distributions.TransformedDistribution
14+
.. autoclass:: numpyro.distributions.distribution.TransformedDistribution
1515
:members:
1616
:undoc-members:
1717
:show-inheritance:

numpyro/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def fori_collect(n, body_fun, init_val, transform=identity, progbar=True, **prog
106106
effect of collecting values from the loop body. In addition, this allows for
107107
post-processing of these samples via `transform`, and progress bar updates.
108108
Note that, in some cases, `progbar=False` can be faster, when collecting a
109-
lot of samples.
109+
lot of samples. Refer to example usage in :func:`~numpyro.mcmc.hmc`.
110110
111111
:param int n: number of times to run the loop body.
112112
:param body_fun: a callable that takes a collection of

0 commit comments

Comments
 (0)