Skip to content

Commit 1426c46

Browse files
✏️ Change evaluated at to 3rd operand and minor update
1 parent 5753467 commit 1426c46

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/source/developer_guide.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ below), and x.dist() as the associated density/mass function
134134
(distribution in the mathematical sense). It is not perfect, and now
135135
after a few years learning Bayesian statistics I also realized these
136136
subtleties (i.e., the distinction between *random variable* and
137-
*distribution*).
137+
*distribution*).
138138
139139
But when I was learning probabilistic modelling as a
140140
beginner, I did find this approach to be the easiest and most
@@ -145,7 +145,7 @@ follows a Gaussian distribution, and
145145
density function <https://en.wikipedia.org/wiki/Probability_density_function>`__ that takes input :math:`x`
146146
147147
.. math::
148-
X:=f(x) = \frac{1}{\sigma \sqrt{(2 \pi)}} * \exp^{- 0.5 * (\frac{x - \mu}{\sigma})^2} = \frac{1}{\sqrt{(2 \pi)}} * \exp^{- 0.5 * x^2}\vert_{\mu = 0, \sigma=1}
148+
X:=f(x) = \frac{1}{\sigma \sqrt{2 \pi}} \exp^{- 0.5 (\frac{x - \mu}{\sigma})^2}\vert_{\mu = 0, \sigma=1} = \frac{1}{\sqrt{2 \pi}} \exp^{- 0.5 x^2}
149149
150150
Within a model context, RVs are essentially Theano tensors (more on that
151151
below). This is different than TFP and pyro, where you need to be more

0 commit comments

Comments
 (0)