Skip to content

Commit f0f2e58

Browse files
committed
fix typos
1 parent b8d4816 commit f0f2e58

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

pymc3/variational/opvi.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,7 @@ class Group(object):
482482
String that marks the corresponding variational family for the group.
483483
Cannot be passed both with `params`
484484
params : dict
485-
Dict with variation family parameters, full description can be found below.
485+
Dict with variational family parameters, full description can be found below.
486486
Cannot be passed both with `vfam`
487487
random_seed : int
488488
Random seed for underlying random generator
@@ -606,7 +606,7 @@ class Group(object):
606606
607607
latent3_{i, \dots} \sim \mathcal{N}(\mu_i, \Sigma_i) \foreach i
608608
609-
**Note**: Using batched and parametrized approximation is ok, but
609+
**Note**: Using rowwise and user-parametrized approximation is ok, but
610610
shape should be checked beforehand, it is impossible to infer it by PyMC3
611611
612612
Normalizing Flow Group
@@ -618,7 +618,7 @@ class Group(object):
618618
619619
**Note**: Consider passing location flow as the last one and scale as the first one for stable inference.
620620
621-
Batched normalizing flow is supported as well
621+
Rowwise normalizing flow is supported as well
622622
623623
>>> group = Group([latent3], vfam='scale-hh*2-radial-loc', rowwise=True)
624624
@@ -643,8 +643,8 @@ class Group(object):
643643
^^^^^^^^^^^^^^^^^^^^^^
644644
When you have a lot of latent variables it is impractical to do it all manually.
645645
To make life much simpler, You can pass `None` instead of list of variables. That case
646-
you'll not create shared parameters untill you pass all collected groups to
647-
Approximation object that collects all the croups together and checks that every group is
646+
you'll not create shared parameters until you pass all collected groups to
647+
Approximation object that collects all the groups together and checks that every group is
648648
correctly initialized. For those groups which have group equal to `None` it will collect all
649649
the rest variables not covered by other groups and perform delayed init.
650650

0 commit comments

Comments
 (0)