Skip to content

Commit 326beae

Browse files
canyon289twiecki
andauthored
Fix a couple of typos in developer guide (pymc-devs#4278)
* Fix a couple of typos * Apply suggestions from code review Co-authored-by: Thomas Wiecki <[email protected]>
1 parent 9deb5ee commit 326beae

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/source/developer_guide.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ elementary. As long as you have a well-behaved density function, we can
105105
use it in the model to build the model log-likelihood function. Random
106106
number generation is great to have, but sometimes there might not be
107107
efficient random number generator for some densities. Since a function
108-
is all you need, you can wrap almost any thenao function into a
108+
is all you need, you can wrap almost any Theano function into a
109109
distribution using ``pm.DensityDist``
110110
https://docs.pymc.io/Probability\_Distributions.html#custom-distributions
111111
@@ -919,7 +919,7 @@ kernels in TFP do not flatten the tensors, see eg docstring of
919919
Dynamic HMC
920920
^^^^^^^^^^^
921921
922-
We love NUTS, or to be more precise Dynamic HMC with complex stoping
922+
We love NUTS, or to be more precise Dynamic HMC with complex stopping
923923
rules. This part is actually all done outside of Theano, for NUTS, it
924924
includes: the leapfrog, dual averaging, tunning of mass matrix and step
925925
size, the tree building, sampler related statistics like divergence and
@@ -976,7 +976,7 @@ Multivariate Gaussian. In another word, we are approximating each elements in
976976
super(ADVI, self).__init__(MeanField(*args, **kwargs))
977977
# ==> In the super class KLqp
978978
super(KLqp, self).__init__(KL, MeanField(*args, **kwargs), None, beta=beta)
979-
# ==> In the super class Inferece
979+
# ==> In the super class Inference
980980
...
981981
self.objective = KL(MeanField(*args, **kwargs))(None)
982982
...

0 commit comments

Comments
 (0)