Skip to content

Commit 540db41

Browse files
authored
Docstring fix (#613)
1 parent 7297b36 commit 540db41

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

blackjax/smc/base.py

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,16 @@ class SMCState(NamedTuple):
2626
being an array of size `(n_particles, ...)`.
2727
2828
Examples (three particles):
29-
- Single univariate posterior:
30-
[ Array([[1.], [1.2], [3.4]]) ]
31-
- Single bivariate posterior:
32-
[ Array([[1,2], [3,4], [5,6]]) ]
33-
- Two variables, each univariate:
34-
[ Array([[1.], [1.2], [3.4]]),
35-
Array([[50.], [51], [55]]) ]
36-
- Two variables, first one bivariate, second one 4-variate:
37-
[ Array([[1., 2.], [1.2, 0.5], [3.4, 50]]),
38-
Array([[50., 51., 52., 51], [51., 52., 52. ,54.], [55., 60, 60, 70]]) ]
29+
- Single univariate posterior:
30+
[ Array([[1.], [1.2], [3.4]]) ]
31+
- Single bivariate posterior:
32+
[ Array([[1,2], [3,4], [5,6]]) ]
33+
- Two variables, each univariate:
34+
[ Array([[1.], [1.2], [3.4]]),
35+
Array([[50.], [51], [55]]) ]
36+
- Two variables, first one bivariate, second one 4-variate:
37+
[ Array([[1., 2.], [1.2, 0.5], [3.4, 50]]),
38+
Array([[50., 51., 52., 51], [51., 52., 52. ,54.], [55., 60, 60, 70]]) ]
3939
"""
4040

4141
particles: ArrayTree

0 commit comments

Comments
 (0)