@@ -6,7 +6,8 @@ API Reference
66
77The following documents the public API of CmdStanPy. It is expected to be stable between versions,
88with backwards compatibility between minor versions and deprecation warnings preceding breaking changes.
9- There is also the `internal API <internal_api.rst >`__, which is makes no such guarantees.
9+ The documentation for the `internal API <internal_api.rst >`_ is also provided, but the internal API
10+ does not guarantee either stability and backwards compatibility.
1011
1112.. toctree ::
1213 :hidden:
@@ -25,15 +26,15 @@ A CmdStanModel object encapsulates the Stan program. It manages program compilat
2526:meth: `~CmdStanModel.sample `
2627 runs the HMC-NUTS sampler to produce a set of draws from the posterior distribution.
2728
28- :meth: `~CmdStanModel.pathfinder `
29- runs the Pathfinder variational inference parameters to recieve approximate draws from the posterior.
30-
3129:meth: `~CmdStanModel.optimize `
3230 produce a penalized maximum likelihood estimate or maximum a posteriori estimate (point estimate) of the model parameters.
3331
3432:meth: `~CmdStanModel.laplace_sample `
3533 draw from a Laplace approximatation centered at the posterior mode found by ``optimize ``.
3634
35+ :meth: `~CmdStanModel.pathfinder `
36+ runs the Pathfinder variational inference parameters to recieve approximate draws from the posterior.
37+
3738:meth: `~CmdStanModel.variational `
3839 run CmdStan’s automatic differentiation variational inference (ADVI) algorithm to approximate the posterior distribution.
3940
@@ -43,30 +44,28 @@ A CmdStanModel object encapsulates the Stan program. It manages program compilat
4344.. autoclass :: cmdstanpy.CmdStanModel
4445 :members:
4546
46-
4747CmdStanMCMC
4848===========
4949
5050.. autoclass :: cmdstanpy.CmdStanMCMC
5151 :members:
5252
53-
54- CmdStanPathfinder
55- =================
56-
57- .. autoclass :: cmdstanpy.CmdStanPathfinder
58- :members:
59-
6053CmdStanMLE
6154==========
6255
6356.. autoclass :: cmdstanpy.CmdStanMLE
6457 :members:
6558
66- CmdStanGQ
67- =========
59+ CmdStanLaplace
60+ ==============
6861
69- .. autoclass :: cmdstanpy.CmdStanGQ
62+ .. autoclass :: cmdstanpy.CmdStanLaplace
63+ :members:
64+
65+ CmdStanPathfinder
66+ =================
67+
68+ .. autoclass :: cmdstanpy.CmdStanPathfinder
7069 :members:
7170
7271CmdStanVB
@@ -75,10 +74,10 @@ CmdStanVB
7574.. autoclass :: cmdstanpy.CmdStanVB
7675 :members:
7776
78- CmdStanLaplace
79- ==============
77+ CmdStanGQ
78+ =========
8079
81- .. autoclass :: cmdstanpy.CmdStanLaplace
80+ .. autoclass :: cmdstanpy.CmdStanGQ
8281 :members:
8382
8483*********
0 commit comments