File tree Expand file tree Collapse file tree 5 files changed +35
-16
lines changed Expand file tree Collapse file tree 5 files changed +35
-16
lines changed Original file line number Diff line number Diff line change @@ -67,11 +67,7 @@ Functions exposed in pymc.math
67
67
sgn
68
68
ceil
69
69
floor
70
- det
71
70
matrix_inverse
72
- extract_diag
73
- matrix_dot
74
- trace
75
71
sigmoid
76
72
logsumexp
77
73
invlogit
Original file line number Diff line number Diff line change @@ -6,8 +6,6 @@ Model creation and inspection
6
6
:toctree: generated/
7
7
8
8
Model
9
- model_to_graphviz
10
- model_to_networkx
11
9
modelcontext
12
10
13
11
Others
@@ -22,3 +20,14 @@ Others
22
20
set_data
23
21
Point
24
22
compile_fn
23
+
24
+
25
+ Graph visualization
26
+ -------------------
27
+
28
+ .. currentmodule :: pymc.model_graph
29
+ .. autosummary ::
30
+ :toctree: generated/
31
+
32
+ model_to_networkx
33
+ model_to_graphviz
Original file line number Diff line number Diff line change 1
1
PyTensor utils
2
2
**************
3
3
4
- .. currentmodule :: pymc
4
+ .. currentmodule :: pymc.pytensorf
5
5
6
6
.. autosummary ::
7
7
:toctree: generated/
Original file line number Diff line number Diff line change @@ -4,27 +4,39 @@ Samplers
4
4
This submodule contains functions for MCMC and forward sampling.
5
5
6
6
7
- .. currentmodule :: pymc
7
+ .. currentmodule :: pymc.sampling.forward
8
8
9
9
.. autosummary ::
10
10
:toctree: generated/
11
11
12
- sample
13
12
sample_prior_predictive
14
13
sample_posterior_predictive
15
- sample_posterior_predictive_w
16
- sampling.jax.sample_blackjax_nuts
17
- sampling.jax.sample_numpyro_nuts
18
- init_nuts
19
14
draw
20
15
16
+
17
+ .. currentmodule :: pymc.sampling.mcmc
18
+
19
+ .. autosummary ::
20
+ :toctree: generated/
21
+
22
+ sample
23
+ init_nuts
24
+
25
+ .. currentmodule :: pymc.sampling.jax
26
+
27
+ .. autosummary ::
28
+ :toctree: generated/
29
+
30
+ sample_blackjax_nuts
31
+ sample_numpyro_nuts
32
+
33
+
21
34
Step methods
22
35
************
23
36
24
- .. currentmodule :: pymc
25
-
26
37
HMC family
27
38
----------
39
+ .. currentmodule :: pymc.step_methods.hmc
28
40
29
41
.. autosummary ::
30
42
:toctree: generated/
@@ -34,6 +46,7 @@ HMC family
34
46
35
47
Metropolis family
36
48
-----------------
49
+ .. currentmodule :: pymc.step_methods
37
50
38
51
.. autosummary ::
39
52
:toctree: generated/
@@ -53,6 +66,7 @@ Metropolis family
53
66
54
67
Other step methods
55
68
------------------
69
+ .. currentmodule :: pymc.step_methods
56
70
57
71
.. autosummary ::
58
72
:toctree: generated/
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ def __getattr__(name):
57
57
warnings .warn (f"{ name } has been deprecated, use ordered instead." , FutureWarning )
58
58
return ordered
59
59
60
- if name in ("univariate_sum_to_1, multivariate_sum_to_1" ):
60
+ if name in ("univariate_sum_to_1" , " multivariate_sum_to_1" ):
61
61
warnings .warn (f"{ name } has been deprecated, use sum_to_1 instead." , FutureWarning )
62
62
return sum_to_1
63
63
You can’t perform that action at this time.
0 commit comments