File tree Expand file tree Collapse file tree 8 files changed +92
-1
lines changed Expand file tree Collapse file tree 8 files changed +92
-1
lines changed Original file line number Diff line number Diff line change 23
23
api/backends
24
24
api/misc
25
25
api/testing
26
+ api/dims
26
27
27
28
------------------
28
29
Dimensionality
Original file line number Diff line number Diff line change
1
+ .. _api_dims :
2
+
3
+ Dims
4
+ ====
5
+
6
+ .. warning :: This module is experimental and may contain critical breaks. API changes are expected in future releases.
7
+
8
+ This submodule contains functions for defining distributions and operations that use explicit dimensions.
9
+
10
+ The module is presented in :ref: `dims_module `.
11
+
12
+
13
+ .. toctree ::
14
+
15
+ dims/model
16
+ dims/math
17
+ dims/distributions
18
+ dims/transforms
Original file line number Diff line number Diff line change
1
+ *************
2
+ Distributions
3
+ *************
4
+
5
+ Scalar distributions
6
+ ====================
7
+
8
+ .. currentmodule :: pymc.dims
9
+ .. autosummary ::
10
+ :toctree: generated/
11
+ :template: distribution.rst
12
+
13
+ Flat
14
+ HalfFlat
15
+ Normal
16
+ HalfNormal
17
+ LogNormal
18
+ StudentT
19
+ HalfStudentT
20
+ Cauchy
21
+ HalfCauchy
22
+ Beta
23
+ Laplace
24
+ Gamma
25
+ InverseGamma
26
+
27
+
28
+ Vector distributions
29
+ ====================
30
+
31
+ .. currentmodule :: pymc.dims
32
+ .. autosummary ::
33
+ :toctree: generated/
34
+ :template: distribution.rst
35
+
36
+ Categorical
37
+ MvNormal
38
+ ZeroSumNormal
Original file line number Diff line number Diff line change
1
+ ***************************************
2
+ Mathematical operations with dimensions
3
+ ***************************************
4
+
5
+ This module wraps all the mathematical operations defined in :ref: `pytensor.xtensor.math <pytensor:libdoc_xtensor_math >`.
6
+
7
+ It includes a ``linalg `` submodule that wraps all the operations defined in :ref: `pytensor.xtensor.linalg <pytensor:libdoc_xtensor_linalg >`.
8
+
9
+ Operations defined at the module level in :ref: `pytensor.xtensor <pytensor:libdoc_xtensor_module_function >` are available at the ``pymc.dims `` module level.
Original file line number Diff line number Diff line change
1
+ ******************
2
+ Model constructors
3
+ ******************
4
+
5
+ .. currentmodule :: pymc.dims
6
+ .. autosummary ::
7
+ :toctree: generated/
8
+
9
+ Data
10
+ Deterministic
11
+ Potential
Original file line number Diff line number Diff line change
1
+ ***********************
2
+ Distribution Transforms
3
+ ***********************
4
+
5
+ .. currentmodule :: pymc.dims.transforms
6
+ .. autosummary ::
7
+ :toctree: generated/
8
+
9
+ LogTransform
10
+ LogOddsTransform
11
+ ZeroSumTransform
Original file line number Diff line number Diff line change 5
5
"id" : " 17e37649edaa8d0d" ,
6
6
"metadata" : {},
7
7
"source" : [
8
+ " (dims_module)=\n " ,
9
+ " \n " ,
8
10
" # PyMC dims module"
9
11
]
10
12
},
Original file line number Diff line number Diff line change 5
5
:maxdepth: 1
6
6
7
7
pymc_overview
8
- GLM_linear
9
8
model_comparison
10
9
posterior_predictive
11
10
dimensionality
12
11
pymc_pytensor
12
+ dims_module
13
+ GLM_linear
13
14
Gaussian_Processes
14
15
:::
15
16
You can’t perform that action at this time.
0 commit comments