From 3a1e1c6d346a5e8b0ae0ff487904e903a91e3f14 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 25 Aug 2022 13:30:24 +0000 Subject: [PATCH] release/v1.0.7: updating version numbers --- cmdstanpy/_version.py | 2 +- docs/_modules/cmdstanpy/cmdstan_args.html | 4 +- docs/_modules/cmdstanpy/compiler_opts.html | 4 +- docs/_modules/cmdstanpy/model.html | 4 +- docs/_modules/cmdstanpy/stanfit.html | 4 +- docs/_modules/cmdstanpy/stanfit/gq.html | 15 +- docs/_modules/cmdstanpy/stanfit/mcmc.html | 13 +- docs/_modules/cmdstanpy/stanfit/metadata.html | 4 +- docs/_modules/cmdstanpy/stanfit/mle.html | 15 +- docs/_modules/cmdstanpy/stanfit/runset.html | 4 +- docs/_modules/cmdstanpy/stanfit/vb.html | 15 +- docs/_modules/cmdstanpy/utils.html | 4 +- docs/_modules/cmdstanpy/utils/cmdstan.html | 4 +- docs/_modules/cmdstanpy/utils/json.html | 4 +- docs/_modules/index.html | 4 +- docs/_sources/changes.rst.txt | 4 + docs/_static/documentation_options.js | 2 +- docs/api.html | 4 +- docs/changes.html | 15 +- docs/community.html | 4 +- docs/genindex.html | 4 +- docs/index.html | 5 +- docs/installation.html | 4 +- docs/internal_api.html | 4 +- docs/objects.inv | Bin 5057 -> 5064 bytes docs/py-modindex.html | 4 +- docs/search.html | 4 +- docs/searchindex.js | 2 +- docs/users-guide.html | 4 +- docs/users-guide/examples.html | 4 +- docs/users-guide/examples/MCMC Sampling.html | 4 +- .../Maximum Likelihood Estimation.html | 12 +- .../Maximum Likelihood Estimation.ipynb | 20 +- .../examples/Run Generated Quantities.html | 140 +++++------ .../examples/Run Generated Quantities.ipynb | 224 +++++++++--------- .../examples/Using External C++.html | 4 +- .../examples/VI as Sampler Inits.html | 81 ++++--- .../examples/VI as Sampler Inits.ipynb | 214 ++++++++--------- .../examples/Variational Inference.html | 28 +-- .../examples/Variational Inference.ipynb | 80 +++---- docs/users-guide/hello_world.html | 56 ++--- docs/users-guide/outputs.html | 98 ++++---- docs/users-guide/overview.html | 4 +- docs/users-guide/workflow.html | 4 +- 44 files changed, 586 insertions(+), 547 deletions(-) diff --git a/cmdstanpy/_version.py b/cmdstanpy/_version.py index 6092f239..cb8406c9 100644 --- a/cmdstanpy/_version.py +++ b/cmdstanpy/_version.py @@ -1,3 +1,3 @@ """PyPi Version""" -__version__ = '1.0.6' +__version__ = '1.0.7' diff --git a/docs/_modules/cmdstanpy/cmdstan_args.html b/docs/_modules/cmdstanpy/cmdstan_args.html index d1b4ea17..c711184b 100644 --- a/docs/_modules/cmdstanpy/cmdstan_args.html +++ b/docs/_modules/cmdstanpy/cmdstan_args.html @@ -5,7 +5,7 @@ - cmdstanpy.cmdstan_args — CmdStanPy 1.0.6 documentation + cmdstanpy.cmdstan_args — CmdStanPy 1.0.7 documentation @@ -56,7 +56,7 @@ diff --git a/docs/_modules/cmdstanpy/compiler_opts.html b/docs/_modules/cmdstanpy/compiler_opts.html index d7042b9a..0a7ba706 100644 --- a/docs/_modules/cmdstanpy/compiler_opts.html +++ b/docs/_modules/cmdstanpy/compiler_opts.html @@ -5,7 +5,7 @@ - cmdstanpy.compiler_opts — CmdStanPy 1.0.6 documentation + cmdstanpy.compiler_opts — CmdStanPy 1.0.7 documentation @@ -56,7 +56,7 @@ diff --git a/docs/_modules/cmdstanpy/model.html b/docs/_modules/cmdstanpy/model.html index bfe08cdd..8c8304c4 100644 --- a/docs/_modules/cmdstanpy/model.html +++ b/docs/_modules/cmdstanpy/model.html @@ -5,7 +5,7 @@ - cmdstanpy.model — CmdStanPy 1.0.6 documentation + cmdstanpy.model — CmdStanPy 1.0.7 documentation @@ -56,7 +56,7 @@ diff --git a/docs/_modules/cmdstanpy/stanfit.html b/docs/_modules/cmdstanpy/stanfit.html index 04c0bd3c..a012160f 100644 --- a/docs/_modules/cmdstanpy/stanfit.html +++ b/docs/_modules/cmdstanpy/stanfit.html @@ -5,7 +5,7 @@ - cmdstanpy.stanfit — CmdStanPy 1.0.6 documentation + cmdstanpy.stanfit — CmdStanPy 1.0.7 documentation @@ -56,7 +56,7 @@ diff --git a/docs/_modules/cmdstanpy/stanfit/gq.html b/docs/_modules/cmdstanpy/stanfit/gq.html index 231410c2..08a9ff7c 100644 --- a/docs/_modules/cmdstanpy/stanfit/gq.html +++ b/docs/_modules/cmdstanpy/stanfit/gq.html @@ -5,7 +5,7 @@ - cmdstanpy.stanfit.gq — CmdStanPy 1.0.6 documentation + cmdstanpy.stanfit.gq — CmdStanPy 1.0.7 documentation @@ -56,7 +56,7 @@ @@ -692,10 +692,15 @@

Source code for cmdstanpy.stanfit.gq

             col_idxs = self._metadata.stan_vars_cols[var]
             if len(col_idxs) > 0:
                 dims.extend(self._metadata.stan_vars_dims[var])
-            # pylint: disable=redundant-keyword-arg
-            draws = self._draws[draw1:, :, col_idxs].reshape(dims, order='F')
+
+            draws = self._draws[draw1:, :, col_idxs]
+
             if self._metadata.stan_vars_types[var] == BaseType.COMPLEX:
-                draws = draws[..., 0] + 1j * draws[..., 1]
+                draws = draws[..., ::2] + 1j * draws[..., 1::2]
+                dims = dims[:-1]
+
+            draws = draws.reshape(dims, order='F')
+
             return draws
[docs] def stan_variables(self, inc_warmup: bool = False) -> Dict[str, np.ndarray]: diff --git a/docs/_modules/cmdstanpy/stanfit/mcmc.html b/docs/_modules/cmdstanpy/stanfit/mcmc.html index 344d0d1e..8e4c0593 100644 --- a/docs/_modules/cmdstanpy/stanfit/mcmc.html +++ b/docs/_modules/cmdstanpy/stanfit/mcmc.html @@ -5,7 +5,7 @@ - cmdstanpy.stanfit.mcmc — CmdStanPy 1.0.6 documentation + cmdstanpy.stanfit.mcmc — CmdStanPy 1.0.7 documentation @@ -56,7 +56,7 @@ @@ -916,9 +916,14 @@

Source code for cmdstanpy.stanfit.mcmc

         col_idxs = self._metadata.stan_vars_cols[var]
         if len(col_idxs) > 0:
             dims.extend(self._metadata.stan_vars_dims[var])
-        draws = self._draws[draw1:, :, col_idxs].reshape(dims, order='F')
+        draws = self._draws[draw1:, :, col_idxs]
+
         if self._metadata.stan_vars_types[var] == BaseType.COMPLEX:
-            draws = draws[..., 0] + 1j * draws[..., 1]
+            draws = draws[..., ::2] + 1j * draws[..., 1::2]
+            dims = dims[:-1]
+
+        draws = draws.reshape(dims, order='F')
+
         return draws
[docs] def stan_variables(self) -> Dict[str, np.ndarray]: diff --git a/docs/_modules/cmdstanpy/stanfit/metadata.html b/docs/_modules/cmdstanpy/stanfit/metadata.html index ed0a1dcb..bf171b8b 100644 --- a/docs/_modules/cmdstanpy/stanfit/metadata.html +++ b/docs/_modules/cmdstanpy/stanfit/metadata.html @@ -5,7 +5,7 @@ - cmdstanpy.stanfit.metadata — CmdStanPy 1.0.6 documentation + cmdstanpy.stanfit.metadata — CmdStanPy 1.0.7 documentation @@ -56,7 +56,7 @@ diff --git a/docs/_modules/cmdstanpy/stanfit/mle.html b/docs/_modules/cmdstanpy/stanfit/mle.html index 91e3197d..6d94f7ee 100644 --- a/docs/_modules/cmdstanpy/stanfit/mle.html +++ b/docs/_modules/cmdstanpy/stanfit/mle.html @@ -5,7 +5,7 @@ - cmdstanpy.stanfit.mle — CmdStanPy 1.0.6 documentation + cmdstanpy.stanfit.mle — CmdStanPy 1.0.7 documentation @@ -56,7 +56,7 @@ @@ -387,12 +387,17 @@

Source code for cmdstanpy.stanfit.mle

             dims = (num_rows,) + self._metadata.stan_vars_dims[var]
             # pylint: disable=redundant-keyword-arg
             if num_rows > 1:
-                result = self._all_iters[:, col_idxs].reshape(dims, order='F')
+                result = self._all_iters[:, col_idxs]
             else:
-                result = self._mle[col_idxs].reshape(dims[1:], order="F")
+                result = self._mle[col_idxs]
+                dims = dims[1:]
 
             if self._metadata.stan_vars_types[var] == BaseType.COMPLEX:
-                result = result[..., 0] + 1j * result[..., 1]
+                result = result[..., ::2] + 1j * result[..., 1::2]
+                dims = dims[:-1]
+
+            result = result.reshape(dims, order='F')
+
             return result
 
         else:  # scalar var
diff --git a/docs/_modules/cmdstanpy/stanfit/runset.html b/docs/_modules/cmdstanpy/stanfit/runset.html
index 176aabc5..68721c48 100644
--- a/docs/_modules/cmdstanpy/stanfit/runset.html
+++ b/docs/_modules/cmdstanpy/stanfit/runset.html
@@ -5,7 +5,7 @@
   
     
     
-    cmdstanpy.stanfit.runset — CmdStanPy 1.0.6 documentation
+    cmdstanpy.stanfit.runset — CmdStanPy 1.0.7 documentation
     
   
   
@@ -56,7 +56,7 @@
   
 
diff --git a/docs/_modules/cmdstanpy/stanfit/vb.html b/docs/_modules/cmdstanpy/stanfit/vb.html
index 29d88043..0a0a265c 100644
--- a/docs/_modules/cmdstanpy/stanfit/vb.html
+++ b/docs/_modules/cmdstanpy/stanfit/vb.html
@@ -5,7 +5,7 @@
   
     
     
-    cmdstanpy.stanfit.vb — CmdStanPy 1.0.6 documentation
+    cmdstanpy.stanfit.vb — CmdStanPy 1.0.7 documentation
     
   
   
@@ -56,7 +56,7 @@
   
 
@@ -312,12 +312,13 @@ 

Source code for cmdstanpy.stanfit.vb

         shape: Tuple[int, ...] = ()
         if len(col_idxs) > 1:
             shape = self._metadata.stan_vars_dims[var]
-            result: np.ndarray = np.asarray(self._variational_mean)[
-                col_idxs
-            ].reshape(shape, order="F")
-
+            result: np.ndarray = np.asarray(self._variational_mean)[col_idxs]
             if self._metadata.stan_vars_types[var] == BaseType.COMPLEX:
-                result = result[..., 0] + 1j * result[..., 1]
+                result = result[..., ::2] + 1j * result[..., 1::2]
+                shape = shape[:-1]
+
+            result = result.reshape(shape, order="F")
+
             return result
         else:
             return float(self._variational_mean[col_idxs[0]])
diff --git a/docs/_modules/cmdstanpy/utils.html b/docs/_modules/cmdstanpy/utils.html index 71a549df..11cd7f23 100644 --- a/docs/_modules/cmdstanpy/utils.html +++ b/docs/_modules/cmdstanpy/utils.html @@ -5,7 +5,7 @@ - cmdstanpy.utils — CmdStanPy 1.0.6 documentation + cmdstanpy.utils — CmdStanPy 1.0.7 documentation @@ -56,7 +56,7 @@ diff --git a/docs/_modules/cmdstanpy/utils/cmdstan.html b/docs/_modules/cmdstanpy/utils/cmdstan.html index de97e43e..b6096524 100644 --- a/docs/_modules/cmdstanpy/utils/cmdstan.html +++ b/docs/_modules/cmdstanpy/utils/cmdstan.html @@ -5,7 +5,7 @@ - cmdstanpy.utils.cmdstan — CmdStanPy 1.0.6 documentation + cmdstanpy.utils.cmdstan — CmdStanPy 1.0.7 documentation @@ -56,7 +56,7 @@ diff --git a/docs/_modules/cmdstanpy/utils/json.html b/docs/_modules/cmdstanpy/utils/json.html index cc6ea3de..fb5cd55d 100644 --- a/docs/_modules/cmdstanpy/utils/json.html +++ b/docs/_modules/cmdstanpy/utils/json.html @@ -5,7 +5,7 @@ - cmdstanpy.utils.json — CmdStanPy 1.0.6 documentation + cmdstanpy.utils.json — CmdStanPy 1.0.7 documentation @@ -56,7 +56,7 @@ diff --git a/docs/_modules/index.html b/docs/_modules/index.html index d46fa65b..56befbea 100644 --- a/docs/_modules/index.html +++ b/docs/_modules/index.html @@ -5,7 +5,7 @@ - Overview: module code — CmdStanPy 1.0.6 documentation + Overview: module code — CmdStanPy 1.0.7 documentation @@ -56,7 +56,7 @@ diff --git a/docs/_sources/changes.rst.txt b/docs/_sources/changes.rst.txt index 6752fd88..68f2b558 100644 --- a/docs/_sources/changes.rst.txt +++ b/docs/_sources/changes.rst.txt @@ -7,6 +7,10 @@ What's New For full changes, see the `Releases page `__ on GitHub. +CmdStanPy 1.0.6 +--------------- + +- Fixed an issue where complex number containers in Stan program outputs were not being read in properly by CmdStanPy. The output would have the correct shape, but the values would be mixed up. CmdStanPy 1.0.6 --------------- diff --git a/docs/_static/documentation_options.js b/docs/_static/documentation_options.js index 047e8de6..f3b2e8ff 100644 --- a/docs/_static/documentation_options.js +++ b/docs/_static/documentation_options.js @@ -1,6 +1,6 @@ var DOCUMENTATION_OPTIONS = { URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'), - VERSION: '1.0.6', + VERSION: '1.0.7', LANGUAGE: 'None', COLLAPSE_INDEX: false, BUILDER: 'html', diff --git a/docs/api.html b/docs/api.html index 5ff59067..e52e6089 100644 --- a/docs/api.html +++ b/docs/api.html @@ -6,7 +6,7 @@ - API Reference — CmdStanPy 1.0.6 documentation + API Reference — CmdStanPy 1.0.7 documentation @@ -59,7 +59,7 @@ diff --git a/docs/changes.html b/docs/changes.html index 509219f6..1eab93fd 100644 --- a/docs/changes.html +++ b/docs/changes.html @@ -6,7 +6,7 @@ - What’s New — CmdStanPy 1.0.6 documentation + What’s New — CmdStanPy 1.0.7 documentation @@ -59,7 +59,7 @@ @@ -172,6 +172,11 @@ CmdStanPy 1.0.6 +
  • + + CmdStanPy 1.0.6 + +
  • CmdStanPy 1.0.5 @@ -236,6 +241,12 @@

    What’s New

    CmdStanPy 1.0.6#

      +
    • Fixed an issue where complex number containers in Stan program outputs were not being read in properly by CmdStanPy. The output would have the correct shape, but the values would be mixed up.

    • +
    + +
    +

    CmdStanPy 1.0.6#

    +
    • Fixed a build error in the documentation

    • Improved messages when model fails to compile due to C++ errors.

    diff --git a/docs/community.html b/docs/community.html index 5786d3fe..e5469a8b 100644 --- a/docs/community.html +++ b/docs/community.html @@ -6,7 +6,7 @@ - Community — CmdStanPy 1.0.6 documentation + Community — CmdStanPy 1.0.7 documentation @@ -58,7 +58,7 @@ diff --git a/docs/genindex.html b/docs/genindex.html index b7a08361..74adcd0f 100644 --- a/docs/genindex.html +++ b/docs/genindex.html @@ -5,7 +5,7 @@ - Index — CmdStanPy 1.0.6 documentation + Index — CmdStanPy 1.0.7 documentation @@ -56,7 +56,7 @@ diff --git a/docs/index.html b/docs/index.html index 93b64465..d1d14af5 100644 --- a/docs/index.html +++ b/docs/index.html @@ -6,7 +6,7 @@ - cmdstanpy – Python interface to CmdStan — CmdStanPy 1.0.6 documentation + cmdstanpy – Python interface to CmdStan — CmdStanPy 1.0.7 documentation @@ -58,7 +58,7 @@ @@ -294,6 +294,7 @@

  • What’s New
    • CmdStanPy 1.0.6
    • +
    • CmdStanPy 1.0.6
    • CmdStanPy 1.0.5
    • CmdStanPy 1.0.4
    • CmdStanPy 1.0.3
    • diff --git a/docs/installation.html b/docs/installation.html index 8da2ca49..2a748896 100644 --- a/docs/installation.html +++ b/docs/installation.html @@ -6,7 +6,7 @@ - Installation — CmdStanPy 1.0.6 documentation + Installation — CmdStanPy 1.0.7 documentation @@ -59,7 +59,7 @@ diff --git a/docs/internal_api.html b/docs/internal_api.html index 7d87e939..2813a0a6 100644 --- a/docs/internal_api.html +++ b/docs/internal_api.html @@ -6,7 +6,7 @@ - Internal API Reference — CmdStanPy 1.0.6 documentation + Internal API Reference — CmdStanPy 1.0.7 documentation @@ -59,7 +59,7 @@ diff --git a/docs/objects.inv b/docs/objects.inv index 5cfb699b7428e4dd3150c748fd0bc0386fbaf039..2da32416ce35b298c66074714738fd943ab8d044 100644 GIT binary patch delta 2839 zcmV+y3+VL0C&(v|K>;_hLXrr7w#Z$zPjj8>x1`;o4%PV9fuaaa+Idq|`?~1w4Shpq zvEFeie$|v#@;8^dB4q{Iwas5R>rs!%sv_<6Rk8*+m%bcQ5}BeK=$f1UHf^yJR|;M6 zA09j&LP^dFXpAs9PFD#+$>n{&ZR+8L#Z8*wq;Et8Dp(>a<)~@_p9?~Ntg)Gct=CKr zD7nm!b0uZ2y~Del?RuvVA13cbR`O2CGFj(Sn400WY|`Py zvFkq)KR#l`CKU|K^Wq*`qOY`N<%=V^#=(qc8iNIEC{Z{EBq?PTOuIQWg-p2=o^}6VP+h32BL!}cU ztqjnkw1GIJQYNyV$|#$R{8DdJ=93ylIq6tgNO?e@-f&s92qut;lr@mv-R}xn?z=Sm zlx`fuq0ZBzeR+R*KGqY@AFGMdQ69hF>toK!Y0%UzIA0NHTT;$zu@mN5wo z6d)5vPDUD8PEtYvWFtv0YzO85M-bs~-os&EyPzSc@ss=_QOp*$0#kIRaM3u%3!8v3 z1{6RxoV0TCyPy$&=uxJ^#G+X)Y!J3sRxt5+_6r+_HF6eE-tE97h>rNp`0?IJ+!;A5 zP%fS*3#oM+vJ46!yNvWSa@X-ZnBvANF7OTBbAuw00p*uCV7t(_zzO43zhIpO&dBg+ zNAg7CK@}GG;J8*4?}+Wf5kPB!OV+zd@eY}9Ed}c=a3*4ZwhN192UR$N4`aByBRew! zM{6F#JtgAau^m*P7w8_t$#2lRjMz(*oqiS~=9KyV7c5+rBM(MGk4+uVNk8|MSh$py#rlMBV$M}vFM(3n9N)7igsz7D04LWD=vmcAvB7_ImcpJ^6*>XrG0vFO6Xk)y`gMr$jd7k z$t%>{D$VFZKwKi@y&sW@Vz=+RNHVJzPEeVD%kHA_+=S->sApT8eG*2J5URL2ns zj2}sWaB7>bL&NpiYG3vR0c~-b&%(F?=s6&jyhO_bkj8g?n`Z1Lp{T22?T^L{RCHT7 z3j!adWP{+_6GbY{C0eU2q#Q~+)b;H?>-R0rhes%6dAVuR3R#|eM!9J-cx5)IxK7)D z+Yr$+r9^~g!Y*ra%|v-Ux~w=zd+O8cJ(-S?DU!xQ-{%FHp2awS4+jhM&M1&EO+)4|oZ%#CA`(f_^K{+x__}F6 zkpTp=cNtyL$B$OOo6$saGD!xoY!0|R6#DC?a9(ePzW4!Pn|7+QBx|p~hr92GBAv{a zWCZ5N9t$e-5@bY^PKb0el}<)!fU9C6J;L#skS5Z^1Ajjq_;@VPwW|sm- z&=LtCP6zX96d6ulAQauOL%v~|oA6VZa0gh((cXUH*P_ zVXB#d3*dHNCnBa+o{T}Yg12Aq_BA2-T0oGW{}@5oUX15ag7gum663468BRvX_Vgr* z--^pUM`=!m8qzs&TQsz@VH&M}qc~v1wnZK48+47^y4jayaWa4H73bROEZ)3OP1qkq z6{^XonhdJ+RpeAPuB0}y7U)x2H0Gn`2FY4DN~ydKGqtE)?AeS$7J1f^$0cBJzb#C zJua5V&p|6ok5gp!VQpm@4T6#g6ibg9QIY{A8Bh|50xrT~uvbZcODwuTC}ewLtI&Gi zckJj!KrJr2Vf0tK;F)Uwd}?2`XCyWn$LtPUT$auHwrR`U{Rv4GWS#Q6-)PFCcWxdM=-UT%9`DtGS@lkhnoaZ*qen;$gfLT=w)a%$DS{56quWJe<4SOPl{a^o7Ge%9A>F&UP&P$+nb+yy052T%x*l)3H zHXG-W#Ke%0elz^5!SaJjPrV2!Rx#$oO%*BNAaw#c%A2uCllyd2HXfEzO1r)Ak*C`+ zS2Qq2bzS0N^kZuvB+ez?#B?ay3obScvuvd|6*DaSCalMs6Cyd3p+OT=Ui|tL z3LQB#>t=0#eg}&UlD1)F!oqwL%WhZ7kN2;v*!&C-4fxuUDNi=m~O;B{!K~4fj@AKM+sGVlngq|G2J0~ zA0yorj8NWWjz8tj1K6pOvw)3k??FS^X`zaI;e)<^H%9@R2D1}JZISRcxMp$Mrp837 zh#N$Hd@zb}Ok?o4uV4P{jOV6>%%X=}em|{owPwMnBsFJPIQ16ZR4p)M(y(M4h8xdq zs%hK&-ZmJK{~PLojH4ohUuR;0^mvUZxgIrMBNOcor){Rawja_4ovR`LGTq<@ibHC7 z8E+qdvgSP86g2HkE&Bc|g4RzX^0ToII^>3!>mr=_4x8WVF>V3cPT&)H{+|3X{i7=` zN=N%vV?T_Zo)`NF9rY;QawI}eW5f{#I}Gu%`nJb{zC%;xK>;?gLXrr7_Lej})S(*RIuI41NkeU_YF`)qy`gc-EY`eF#jl#u zO8(|jSEQ^!ySDiYXFcjMSr(+dzRcAC=hBx$N+MHq16^~|-=-~g;!2?_{=K?~4{!xb8a-tX=Q);lt#;$V%QRStjdz4pK9`mQ6amc)Z>=b)F(^ zHYHtBU@BgDX#k*3sqAwBGIsq(;>Sm<*rbAid0yOuN@*tl>il26(h&<4o>)Eh3V7QqBEk+KHTyZc=s%YBz-pVEzEIMjK1 zv@h>3&&PV=`C~OvI?4++!_cU`ZzDA@r0CDQbR6@0FT;B|{o&Vt9B6Qc#<1{$DWXbP z7CWdOBLi;B6{f~762)v5x@Ixc86sRI&J!6ZVYv$u3LqO!T72zV&@v{GeF9|S$jMM4 z%SlQofNUh`h3&u`p$H-z&U-kmYZo*GH2{)dB#PO>R$vOR6fPRacwrMT25|z&hLcu~ zZWlBHJxo-XSTxIjg$=?Mj0z?m&wgR!u!g<@%DWwyM8Ofi8Na?ei917I1du~uDF`)bs2W&U;7C2$Ns~4=Zz!@3e>`0zSJgC9~ z9~}3B;vKQw7y@W5aLIbPDBdCSwWDC21;A!=uQHh#!{Vt z1W7?C^6;IpD))F$hb?g9HFe+w%mM7>K1BNjI9L3KAq`q6j>H4A#W`hr8hY&0Ha5FC!9=BPy)P zmQgGCCIRHz>qOS`H8pGz$fc|cJizxrRn+~35BQBq7oUAKqWk0yZT3Zu=a)RxOm@fP zPm=IMm%OGaGu;*a9q|M=&{Wil`WWA_!swjTMycT*ro3r%#?$SX$~{t%9B9U*8EW}) zmEIM9)xJu~;u9{5Z9~=rn5>to;r33kyRWbPG#+0JDF1x+jSMjN#d;b4K@83i(brfJ9=M>CuxO++FodY-PE9$z=jCo+Iw_Aa9< z`uNf6cQcwuPA16!mdydTheChd6wd3d&=)@dY|~CvmSpYq_i*?9P^6Rjl8nIo*keIu zUV@Bh(g~4HrqanM4RBRVq(_*Z`5q6wQlNNR@+xZT73A1_MO<6T>{8$eS|R~|#OYvO zjUvOz3xuK@cE~p@a}$0F6YcjHVqG>_%9AlFR`B-g-M%IyUkeEG^B*G!+l%o$N{~L{RDyIhH^a#Y*`A(6@mq1Z=P1p| zP(wN=Zi|L?HcZ296bFphwx~mYeS@xXTQ~c%EKcUHz2aP3oyD6MstNmxrb0CtRg*!L zzKWcx#+B4Y)&hM>i^hD^+#p#CM=6!pVWt+fi#?lB$Rcn!kjx%F3~sT1QdN4O!IjC6 zq@TSc|M5Sol^@bNBW3u$*%jIIgvlpDnmu7uA{>C&tx}Fn8U)2gOb`iwK|}Gn`7O6GX*P4`Pz_AcR|GmadJ z5RyW4lg8K3;9HzY)>Cm#|1kb z;OmK^F8c7f>%%!=n08`+lEp0}OcD5@I_&@|DSm{B*{DnQ|XJ<#I7uEv4e)&&lX}oE2Zq8KCG=Qqd`y-fnw=VBT6!$Bm+t!QNTqw4E8E%iA5I(g=|lMY!zDX`;Hym2&lzn zH;n#j7d%t#pHJD1wiY@h>{L z=+hB{v`_a(kQqmRRqGWUf`*^nro^#WI-E!kgW_J+L3pp2(Sah1GqZF!a2}@Dy{vcH zz`KA3K0ob?AU^8Oj`Q5c+3$$`4lt`~fqEU=L(3utSkx5X6Ys{NpW5W#$J~R55aMBg z>b`ACcI^1p^mR>vq+w5lu>b3yYR0GuGu<87c?s06u6BBV^?|gL68kNd&1T~~l9(70 z(r<=;HCTR7>8TeX#VW>pxTzuq9HdSlM|m?gX>y-#%ErS|N@=$jKJs)s=86W!sIE&q zjDBnlCTDjZip06Zo0twod%?wqVV14*recPL--Pveb3!DCGBjv{%8Os0LZKsvX5FmK z?_jY((l(5LOjww2V%hCV`SJdh6`LP~Lf}=Ep%42ikgn0E!EeNx7}un);!w+89J+p< zM$Qq-=0U*0Q9J}fv|A#4w`p_Aau#us?LBBHJ1ta^FMQDV<|ts(V0OZPs4WuS2G=Z3+tipy6>)>ej}JyM zj%f@Y_w~!ao$=hXkXiJQ%kQT(uGTCVm89kj3#Z<~o2mtdOd6Jq!*JudO*L(s-`fTw z@_$1;ka1LG@as%0kRGoQCD)_IYh - Python Module Index — CmdStanPy 1.0.6 documentation + Python Module Index — CmdStanPy 1.0.7 documentation @@ -63,7 +63,7 @@ diff --git a/docs/search.html b/docs/search.html index a7cb5e75..8c04e524 100644 --- a/docs/search.html +++ b/docs/search.html @@ -5,7 +5,7 @@ - Search — CmdStanPy 1.0.6 documentation + Search — CmdStanPy 1.0.7 documentation @@ -62,7 +62,7 @@ diff --git a/docs/searchindex.js b/docs/searchindex.js index 60959096..1652eda9 100644 --- a/docs/searchindex.js +++ b/docs/searchindex.js @@ -1 +1 @@ -Search.setIndex({docnames:["api","changes","community","index","installation","internal_api","users-guide","users-guide/examples","users-guide/examples/MCMC Sampling","users-guide/examples/Maximum Likelihood Estimation","users-guide/examples/Run Generated Quantities","users-guide/examples/Using External C++","users-guide/examples/VI as Sampler Inits","users-guide/examples/Variational Inference","users-guide/hello_world","users-guide/outputs","users-guide/overview","users-guide/workflow"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":5,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":3,"sphinx.domains.rst":2,"sphinx.domains.std":2,"sphinx.ext.intersphinx":1,"sphinx.ext.viewcode":1,nbsphinx:4,sphinx:56},filenames:["api.rst","changes.rst","community.rst","index.rst","installation.rst","internal_api.rst","users-guide.rst","users-guide/examples.rst","users-guide/examples/MCMC Sampling.ipynb","users-guide/examples/Maximum Likelihood Estimation.ipynb","users-guide/examples/Run Generated Quantities.ipynb","users-guide/examples/Using External C++.ipynb","users-guide/examples/VI as Sampler Inits.ipynb","users-guide/examples/Variational Inference.ipynb","users-guide/hello_world.rst","users-guide/outputs.rst","users-guide/overview.rst","users-guide/workflow.rst"],objects:{"":[[3,0,0,"-","cmdstanpy"]],"cmdstanpy.CmdStanGQ":[[0,2,1,"","chain_ids"],[0,2,1,"","chains"],[0,2,1,"","column_names"],[0,3,1,"","draws"],[0,3,1,"","draws_pd"],[0,3,1,"","draws_xr"],[0,2,1,"","metadata"],[0,3,1,"","save_csvfiles"],[0,3,1,"","stan_variable"],[0,3,1,"","stan_variables"]],"cmdstanpy.CmdStanMCMC":[[0,2,1,"","chain_ids"],[0,2,1,"","chains"],[0,2,1,"","column_names"],[0,3,1,"","diagnose"],[0,2,1,"","divergences"],[0,3,1,"","draws"],[0,3,1,"","draws_pd"],[0,3,1,"","draws_xr"],[0,2,1,"","max_treedepths"],[0,2,1,"","metadata"],[0,3,1,"","method_variables"],[0,2,1,"","metric"],[0,2,1,"","metric_type"],[0,2,1,"","num_draws_sampling"],[0,2,1,"","num_draws_warmup"],[0,3,1,"","save_csvfiles"],[0,3,1,"","stan_variable"],[0,3,1,"","stan_variables"],[0,2,1,"","step_size"],[0,3,1,"","summary"],[0,2,1,"","thin"]],"cmdstanpy.CmdStanMLE":[[0,2,1,"","column_names"],[0,2,1,"","metadata"],[0,2,1,"","optimized_iterations_np"],[0,2,1,"","optimized_iterations_pd"],[0,2,1,"","optimized_params_dict"],[0,2,1,"","optimized_params_np"],[0,2,1,"","optimized_params_pd"],[0,3,1,"","save_csvfiles"],[0,3,1,"","stan_variable"],[0,3,1,"","stan_variables"]],"cmdstanpy.CmdStanModel":[[0,3,1,"","code"],[0,3,1,"","compile"],[0,2,1,"","cpp_options"],[0,2,1,"","exe_file"],[0,3,1,"","exe_info"],[0,3,1,"","format"],[0,3,1,"","generate_quantities"],[0,2,1,"","name"],[0,3,1,"","optimize"],[0,3,1,"","sample"],[0,3,1,"","src_info"],[0,2,1,"","stan_file"],[0,2,1,"","stanc_options"],[0,2,1,"","user_header"],[0,3,1,"","variational"]],"cmdstanpy.CmdStanVB":[[0,2,1,"","column_names"],[0,2,1,"","columns"],[0,2,1,"","eta"],[0,2,1,"","metadata"],[0,3,1,"","save_csvfiles"],[0,3,1,"","stan_variable"],[0,3,1,"","stan_variables"],[0,2,1,"","variational_params_dict"],[0,2,1,"","variational_params_np"],[0,2,1,"","variational_params_pd"],[0,2,1,"","variational_sample"]],"cmdstanpy.InferenceMetadata":[[5,2,1,"","cmdstan_config"],[5,2,1,"","method_vars_cols"],[5,2,1,"","stan_vars_cols"],[5,2,1,"","stan_vars_dims"],[5,2,1,"","stan_vars_types"]],"cmdstanpy.cmdstan_args":[[5,1,1,"","CmdStanArgs"],[5,1,1,"","OptimizeArgs"],[5,1,1,"","SamplerArgs"],[5,1,1,"","VariationalArgs"]],"cmdstanpy.cmdstan_args.CmdStanArgs":[[5,3,1,"","compose_command"],[5,3,1,"","validate"]],"cmdstanpy.cmdstan_args.OptimizeArgs":[[5,3,1,"","compose"],[5,3,1,"","validate"]],"cmdstanpy.cmdstan_args.SamplerArgs":[[5,3,1,"","compose"],[5,3,1,"","validate"]],"cmdstanpy.cmdstan_args.VariationalArgs":[[5,3,1,"","compose"],[5,3,1,"","validate"]],"cmdstanpy.compiler_opts":[[5,1,1,"","CompilerOptions"]],"cmdstanpy.compiler_opts.CompilerOptions":[[5,3,1,"","add"],[5,3,1,"","add_include_path"],[5,3,1,"","compose"],[5,2,1,"","cpp_options"],[5,3,1,"","is_empty"],[5,2,1,"","stanc_options"],[5,2,1,"","user_header"],[5,3,1,"","validate"],[5,3,1,"","validate_cpp_opts"],[5,3,1,"","validate_stanc_opts"],[5,3,1,"","validate_user_header"]],"cmdstanpy.stanfit":[[5,1,1,"","RunSet"]],"cmdstanpy.stanfit.RunSet":[[5,2,1,"","chain_ids"],[5,2,1,"","chains"],[5,3,1,"","cmd"],[5,2,1,"","csv_files"],[5,2,1,"","diagnostic_files"],[5,3,1,"","get_err_msgs"],[5,2,1,"","method"],[5,2,1,"","model"],[5,2,1,"","num_procs"],[5,2,1,"","one_process_per_chain"],[5,2,1,"","profile_files"],[5,3,1,"","save_csvfiles"],[5,2,1,"","stdout_files"]],cmdstanpy:[[0,1,1,"","CmdStanGQ"],[0,1,1,"","CmdStanMCMC"],[0,1,1,"","CmdStanMLE"],[0,1,1,"","CmdStanModel"],[0,1,1,"","CmdStanVB"],[5,1,1,"","InferenceMetadata"],[0,4,1,"","cmdstan_path"],[0,4,1,"","cmdstan_version"],[0,4,1,"","from_csv"],[0,4,1,"","install_cmdstan"],[0,4,1,"","set_cmdstan_path"],[0,4,1,"","set_make_env"],[0,4,1,"","show_versions"],[0,4,1,"","write_stan_json"]]},objnames:{"0":["py","module","Python module"],"1":["py","class","Python class"],"2":["py","property","Python property"],"3":["py","method","Python method"],"4":["py","function","Python function"]},objtypes:{"0":"py:module","1":"py:class","2":"py:property","3":"py:method","4":"py:function"},terms:{"0":[0,3,4,8,9,10,11,12,13,14,15],"00":[8,10,11,12],"000000":[8,10,12,14],"000014":12,"000015":12,"000016":12,"000018":12,"00006":14,"000119":12,"000150":12,"000210":12,"000224":12,"000229":12,"000230":12,"000259":12,"000320":12,"000410":12,"000430":12,"000440":12,"000480":12,"000560":12,"000590":12,"00064":14,"000938":12,"000952":12,"001":12,"001033":12,"001064":12,"00107":12,"001150":12,"001160":12,"001200":12,"001290":12,"001380":12,"001480":12,"001540":12,"001690":12,"001816":12,"00200":12,"002013":12,"002043":12,"00210":12,"00222":8,"002279":12,"002416":12,"00249":8,"00252":12,"00292":12,"003183":14,"00321":12,"003270":10,"004":15,"00402":9,"00408":8,"00439":10,"00442":12,"00443":12,"004465":12,"00459":12,"005":8,"00512":12,"00527":10,"00593":8,"008":8,"00830":8,"00867":8,"009":8,"0095":12,"01":[8,12],"01065":8,"011":15,"011019":12,"01177":8,"01286":12,"014":8,"015":15,"01515":8,"017316":14,"02":[8,15],"020193":10,"0211201":13,"022":8,"022930":8,"03097":12,"03165":12,"034300":12,"03514":12,"03620":14,"03708":8,"03760":14,"03900":12,"04":8,"04571":12,"04607":12,"05":[8,12],"050000000000000003":[8,15],"056908":12,"06":[8,11,15],"0640189":13,"06921":8,"07":11,"071505":12,"07508":8,"0797855":11,"08":13,"081312":10,"09":13,"09000":8,"09049":12,"09157":14,"091574":14,"09259":12,"1":[0,3,4,5,8,9,10,11,12,13,14,15],"10":[0,5,8,10,11,12,14,15],"100":[0,8,15],"1000":[0,8,10,13,14,15],"100000":8,"1001":[8,15],"1005":8,"10129":14,"101290":14,"103":12,"10310":12,"10348":8,"10366":12,"1048":8,"10637":12,"1075":12,"10807":12,"11":[8,10,12,14,15],"110":12,"1100":[8,15],"1155":8,"1165":12,"11847":15,"1188":8,"119199":14,"12":[8,10,14,15],"1200":[8,15],"120090":10,"123":12,"12345":12,"124882":11,"12994":12,"13":[8,9,10,12,13,14,15],"1300":[8,15],"133892":14,"1339":14,"1349":10,"136057":14,"1361":14,"136884":10,"1369":8,"14":[8,10,11,12,14,15],"1400":[8,15],"1402":14,"1414":10,"142567":10,"143687":14,"1437":14,"14475":8,"145000":12,"147":12,"1497":12,"15":[8,10,14,15],"150":12,"1500":[8,15],"1501":13,"1502":13,"1503":13,"1504":13,"1505":13,"1506":13,"1507":13,"1508":13,"1509":13,"1510":13,"1511":13,"1512":13,"1513":13,"154":12,"156":12,"15686":8,"1569":8,"16":[8,10,11,12,14,15],"160":12,"1600":[8,15],"161":12,"1647":14,"165":12,"165672":11,"16590":8,"17":[8,10,14,15],"1700":[8,15],"17030":8,"170300":12,"17346":12,"174933":10,"18":[0,8,9,10,12,13,14,15],"180":12,"1800":[8,15],"18040":10,"18093":10,"18100":12,"18588":8,"1862":14,"186233":14,"18723":8,"19":[8,14,15],"1900":[8,15],"191":12,"196141":8,"19720":8,"1981":8,"1y":11,"2":[0,3,4,5,8,9,10,11,12,13,14,15],"20":[8,10,14,15],"200":[8,15],"2000":[8,15],"200k":8,"201329":8,"201524":8,"201912081451":0,"20220617170100_1":8,"20220822142956_0":8,"20220822142956_1":8,"20220822142956_2":8,"20220822142956_3":8,"20220822142956_4":8,"20220822143000_1":8,"20220822143000_2":8,"20220822143000_3":8,"20220822143000_4":8,"20220823185854_1":12,"20220823185854_2":12,"20220823185854_3":12,"20220823185854_4":12,"20220823185855_1":12,"20220823185855_2":12,"20220823185855_3":12,"20220823185855_4":12,"20220823185919_0":15,"20220823185919_1":[14,15],"20220823185919_2":[14,15],"20220823185919_3":[14,15],"20220823185919_4":[14,15],"20220823185920_0":15,"20220823185920_1":15,"20220823185920_2":15,"20220823185920_3":15,"20220823185920_4":15,"20418":11,"208":8,"2085":12,"21":[8,14,15],"21000":8,"210643":14,"212933":8,"21487":8,"21642":14,"218012":8,"21940":14,"22":[8,9,10,12,13,14,15],"221":8,"222510":8,"22814":10,"23":[8,14,15],"230":8,"23000":8,"230433":13,"231":12,"232":12,"23577":8,"23948":10,"239867":8,"24":[8,12,14,15],"243737":8,"244":12,"24696":8,"247289":14,"25":[0,8,11,15],"251358":8,"2514":8,"253475":10,"25419":8,"256":12,"26":[0,4,8,15],"261660":14,"2633":8,"26866":8,"26950":8,"27":[0,4,8],"27078":11,"27095":8,"272190":10,"274911":14,"28":[0,5,8],"28151":14,"28271":14,"285":8,"29":[0,1,8],"29072":10,"291636":8,"291685":8,"29639":10,"297600":8,"298657":8,"2987":8,"2d":0,"2e":[8,15],"3":[0,3,4,8,9,10,11,12,13,14,15],"30":[8,12,14,15],"300":[8,15],"30028":14,"306462":8,"3065":8,"306500":8,"31":[8,9],"3115":8,"316140":8,"3197":8,"319739":8,"32":0,"32095":8,"321":0,"32500":8,"32530":8,"32588":14,"32760":8,"32902":10,"33":[10,14],"333000":12,"33900":[8,12],"34":[8,12],"34000":8,"34203":14,"34500":12,"34510":10,"35":[8,12,15],"35000":8,"352321":14,"357324":8,"3595":8,"36157":8,"37000":12,"37150":12,"37753":14,"37756":14,"380000":12,"38375":8,"384251":8,"384567":8,"3846":8,"384918":8,"38664":10,"39":[8,9,10,11,12,13],"39070":8,"3995":14,"3996":14,"3997":14,"3998":14,"3999":14,"3d":0,"3x3":0,"4":[0,3,4,8,10,11,12,13,14,15],"40":[8,15],"400":[8,15],"4000":[0,8,10,12,14],"40000":8,"40175":14,"403":12,"404115":14,"41":10,"41040":8,"41109":14,"41370":8,"42000":12,"4344":12,"43540":8,"4385":12,"44":12,"44390":8,"444746":8,"447597":8,"45":[8,12,15],"4508":8,"46135":8,"4664":12,"4701":8,"47110":12,"47117":12,"47301":8,"475314":10,"476924":14,"4786":12,"48":8,"482997":8,"485668":8,"4863":12,"48700":8,"48940":14,"49000":12,"4e":8,"5":[0,3,8,9,10,11,12,13,14,15],"50":[0,8,10,11,12,15],"500":[8,15],"50420":12,"51":8,"5183":8,"518540":8,"52":11,"53000":8,"530174":14,"531111":14,"532000":12,"5331":8,"535956":8,"53896":8,"54":12,"54000":12,"541000":12,"54890":8,"55":[8,12,15],"55157":8,"552":12,"56":8,"560000":12,"569":12,"57":13,"58":[8,9,10,11,12,13],"58406":14,"587":8,"58810":8,"59":[13,15],"5nm6as7u":0,"6":[0,3,8,10,11,12,13,14,15],"60":[8,15],"600":[8,15],"6143":8,"614841":11,"615003":14,"62":12,"63811":8,"644710":8,"64600":12,"647868":14,"65":[8,15],"650000":12,"65889":8,"65978":8,"666":12,"67":12,"678800":12,"68000":8,"694":8,"69530":8,"69590":14,"69607":8,"7":[1,8,10,11,12,13,14,15],"70":[8,15],"700":[8,15],"700000":12,"701880":8,"70257":8,"702779":14,"70500":12,"708830":12,"71000":12,"715":12,"71660":8,"72":12,"72180":14,"725020":12,"733817554":0,"739310":10,"74000":12,"743290":12,"75":[8,11,12,15],"750100":10,"756270":8,"759561":10,"76400":8,"76475":14,"76656":8,"76707":14,"772870":8,"775":12,"78":0,"78582":8,"79992":8,"8":[0,4,8,10,12,14,15],"80":[8,12,15],"800":[8,15],"800000":12,"80000000000000004":[8,15],"80004":8,"801":8,"80160":14,"80420":8,"80780":8,"80th":0,"81000":8,"81503":8,"81820":8,"82455":8,"832552":14,"83414":8,"84000":12,"847043":8,"849600":12,"85":[8,15],"85139":8,"85500":8,"857268":14,"86":8,"86000":8,"867000":12,"88040":8,"88200":12,"888086":14,"88826":8,"88990":8,"89162":8,"893005":8,"894233":8,"89437":8,"896342":8,"89700":14,"9":[4,8,9,10,11,12,13,14,15],"90":[8,15],"900":[8,15],"90034":14,"90153":8,"907470":12,"913481":10,"92000":12,"924881":14,"932073":14,"93285":8,"935933":12,"938":12,"94":10,"94000":[8,12],"945035":14,"947727":14,"947942":14,"95":[0,8,10,12,15],"95250":8,"96000":8,"96068":10,"961783":12,"962000":12,"962403":14,"963840":12,"9655":12,"96852":8,"971817":8,"9745":12,"97621":8,"98000":12,"98088":8,"98950":10,"99":0,"991067":8,"991472":12,"992":[8,14],"993":[8,14],"993601":12,"993865":12,"994":[8,14],"995":[8,14],"996":[8,14],"996272":12,"99652":14,"996529":12,"997":[8,14],"997013":12,"997115":12,"997326":12,"997854":12,"997903":12,"998":[8,14],"998143":8,"998355":12,"998907":12,"999":[8,14],"999197":12,"999422":12,"999452":12,"999461":12,"999474":12,"999494":12,"999536":12,"999669":12,"999725":12,"999865":12,"999965":8,"boolean":0,"break":0,"case":[1,8],"class":[3,9,10,13,14,16,17],"const":11,"default":[0,1,4,5,8,9,12,14,15,16,17],"do":[1,3,4,9,12,13,14,16,17],"export":3,"final":0,"float":[0,5],"function":[1,2,3,6,7,8,12,13,14,15,17],"import":[1,4,8,9,10,11,12,13,14,15,17],"int":[0,5,8,10,11,12,14],"long":8,"new":[0,2,3,4,6,7,16],"public":[0,5],"return":[0,5,8,9,10,11,12,13,14,17],"throw":13,"transient":0,"true":[0,4,5,8,10,11,12,15,17],"try":[0,4,8,11,12,13,15],"var":[0,14],"while":[8,17],A:[0,2,4,14,17],As:[8,10,11],By:[0,4,8,12,14,16,17],For:[0,1,4,5,8,10,12,14,15,17],If:[0,4,5,8,11,12,13,15,17],In:[8,9,10,12,13,14,15,17],It:[0,3,4,8,10,12,14,16,17],Its:17,No:[5,11,12,14],On:[4,8,17],One:0,Or:15,Such:[8,12],The:[0,1,3,4,5,8,9,10,11,12,13,15,17],There:[0,4],These:[4,5,8,12,13],To:[4,8,10,11],Will:0,With:16,__:[0,5,13,14],__init__:5,abil:[0,2],abl:[1,8,12],about:[0,1,4,5,6,8,13,14],abov:[0,8,12],accept:[0,14],accept_stat__:[8,14],access:[0,1,3,13,17],accessor:[0,8,14,17],accord:0,accordingli:[4,8,15],across:[0,14,17],action:8,activ:4,actual:12,ad:5,adapt:[0,5,8,12,13,14,15],adapt_delta:[0,5],adapt_engag:[0,5,13],adapt_init_phas:[0,5],adapt_it:[0,5,13],adapt_metric_window:[0,5],adapt_step_s:[0,5],add:[0,3,5],add_include_path:5,addhandl:15,addit:[0,2,4,8,12,14,17],address:8,adjust:[0,8,13,15],advanc:[0,3,6,7],advantag:[8,9],advi:[0,12,13,16,17],after:1,afterward:4,al:12,algorithm:[0,3,5,8,9,13,14,15,16,17],all:[0,4,5,8,9,10,12,13,14,15,17],allong:4,allot:8,allow:[0,4,8,11,12,14,16,17],alreadi:[0,4,8],also:[0,4,8,10,12,14,15,17],altern:15,alwai:[0,5,17],amount:8,an:[0,1,2,4,5,8,10,11,13,14,15,16,17],analysi:[2,3,8,14,17],analyz:14,ani:[0,4,5,8,10,15,17],api:[3,13],app:4,appli:[10,17],appreci:8,appropri:[16,17],approxim:[0,12,13,14,16,17],ar:[0,2,4,5,8,9,10,11,12,13,14,15,16,17],arg:[0,5,15],argument:[0,4,5,8,10,11,12,13,14,15,17],aris:0,arrai:[0,5,8,10,11,12,14,17],arrang:0,arviz:2,asarrai:0,ascend:13,ascent:13,asctim:15,ask:[4,8],assembl:[0,1,3,5],assert:11,assum:[0,5],assumpt:17,attribut:[8,11,14],auto:[0,9,10,12,13],automat:[8,11,13,17],autonotebook:[9,10,12,13],avail:[0,4,8,9],averag:[10,13],avoid:[0,12,17],back:[0,2],backup:0,backward:[0,5],bad:5,bak:0,bar:[0,4,5,8],base:[0,2,5,8,10,11,16,17],basenam:0,basetyp:5,basic:[12,14],bayesian:[2,3,8,10,12,13,14,16,17],becaus:[0,8,12,13,16],been:[0,8,14],befor:[0,4,8],behavior:[0,16,17],behavoir:0,below:[4,8,12,13],bernoulli3m8g8fsb:15,bernoulli:[0,3,8,9,11,14,15],bernoulli_dir:[9,10,13],bernoulli_extern:11,bernoulli_model:[8,14],bernoulli_model_namespac:11,bernoulli_ppc:10,bernoulli_rng:10,bernoullibaz_rbid:15,bernoullik_gx5ac0:14,bernoullikolo7cku:8,bernoullitkllicz1:8,best:13,beta:[0,8,10,11,12,14],better:[1,12],between:[0,5,8,14,17],beyond:16,bfg:[0,9],bfmi:[0,8,12,14],bias:[8,12],bin:[0,4,11],binari:14,binomial_logit_lpmf:8,bit:11,block:[0,1,8,10,17],blr:12,blrlaeynh9b:12,blrux5anwjl:12,bool:[0,5],boost:11,boost_1:11,both:[0,1,4,8,10,11,17],bound:13,branch:4,brian:[8,11],browser:4,build:[0,1,4,8,17],built:15,c:[0,1,3,5,6,7,8,14,17],calcul:[10,14],call:[0,4,5,13,17],can:[0,1,4,8,10,11,14,15,16,17],cannot:0,canonic:[0,1],captur:15,care:4,carlo:[8,14],carri:17,caus:0,cc1plu:11,cell:13,center:[0,8],cf:17,chain:[0,5,9,10,11,12,13,14,15,17],chain_id:[0,5,15],chanc:[10,14],chang:[0,1,13],charact:0,check:[0,2,3,5,12,14,15,17],ci:0,clean:[0,1],cli11:11,clone:4,close:12,closer:[8,12],clutter:16,cmd:[5,15],cmdstan:[0,1,5,8,9,10,11,12,13,15,16],cmdstan_arg:5,cmdstan_config:[5,14,17],cmdstan_path:[3,4,9,10,13],cmdstan_vers:3,cmdstangq:[3,10,17],cmdstanmcmc:[1,3,8,10,14,15,17],cmdstanml:[3,9,14,17],cmdstanmodel:[1,3,5,8,9,10,11,12,13,14,15,17],cmdstanpi:[0,2,5,6,8,9,10,11,12,13,14,15,16],cmdstanpy_logg:15,cmdstanvb:[3,12,13,14,17],code:[0,1,5,8,10,11,12,14,15,17],collect:[0,4,17],column:[0,5,8,10,11,12,14,17],column_nam:[0,9,10,13],com:[0,4],combin:10,command:[0,1,3,4,5,8,11,15,16,17],comment:[0,5,11,17],common:[5,17],commun:3,compar:[0,11],comparison:[2,10,17],compat:[0,5,17],compil:[0,1,2,3,4,5,8,9,10,11,12,13,14,16],compiler_opt:[5,14],complet:[0,8,10,11,12,14],complex:[1,16],complic:11,compon:[0,4,17],compos:[0,5,8],compose_command:5,compris:0,comput:[0,1,8,10,13,14,17],computation:[10,12],concat_chain:0,concaten:14,conda:3,conda_prefix:4,condit:[0,8,10,12,14,16,17],condition:8,conduct:8,config:5,configur:[0,4,5,8,17],conflict:1,consid:[8,11,12,13],consist:[0,5,8,10],consol:[0,5,8,14,15],console_msg:15,constant:0,constrain:8,constructor:[0,8,11,17],contain:[0,4,5,8,10,14,17],containan:0,content:[5,11,13,15,17],contigu:0,control:[0,3,6,17],conveinc:12,convent:14,converg:[0,8,12,13],convers:0,convert:[0,17],cookiecutt:2,coordin:[8,14],copi:[0,8,12],core:[0,8,10],correct:5,correctli:12,correspond:[0,8,12,14,17],correspondingli:17,correspons:10,could:1,covari:0,cpp:5,cpp_option:[0,5,8,14,17],cpu:0,cpu_count:0,creat:[0,4,8,15,17],csv:[0,3,5,8,10,12,14,17],csv_file:[5,8,15],current:[0,4,10,15],curv:8,cwd:15,d:[0,4,5,8,12,14],d_reentrant:11,daili:2,data:[0,2,3,5,9,10,11,13,15,16],data_dict:10,data_fil:[9,10,12,13,14,15],datafil:14,datafram:[0,8,10,14],dataset:[0,4,8,12,14,16,17],dboost_disable_assert:11,deactiv:4,debug:[0,8,15],decid:0,decis:[10,17],declar:[0,11],deepcopi:5,definit:11,delet:[0,8,15],delta:[8,12,15],demonstr:14,denot:13,dens:0,dense_:0,densiti:[9,10,12,13,14,17],depend:[0,8,17],deploi:16,deploy:16,deprec:0,depth:0,describ:[4,17],descript:[6,13],design:16,detail:0,detect:[8,12,14],determin:[5,13],dev:[0,4,8,11],develop:[4,8,15,16,17],devianc:10,diag:0,diag_:[0,8,14,15],diagnoal:0,diagnos:[0,3,8,12,13],diagnost:[0,1,2,5,14,17],diagnostic_fil:[5,8,15],diagon:0,dict:[0,5,8,17],dict_kei:[8,14],dictionari:[0,5,8,12,14,17],diff:0,differ:[0,9],differenti:[13,17],difficult:10,difficulti:8,dii:3,dim:0,dimens:[0,4,5,8,14,17],dimension:0,dir:[0,4,5,15],direct:0,directli:[0,8],directori:[0,1,3,5,8,11,12,15,16,17],disabl:[0,15],disk:0,dispar:8,displai:[0,4,8],distanc:12,distinct:[0,14],distribut:[0,2,8,12,14,17],diverg:[0,1,8,12,14],divergent__:[8,14],doc:[0,13],docsrc:[8,10,11,12,13,14,15],document:[0,1,5,11],doe:[0,14],doesn:[8,10,12],don:4,done:[8,9,10,11,12,13,14,15,17],doubl:0,down:15,download:[0,4],draw:[0,1,10,12,13,14,17],draws_pd:[0,1,8,10,14,17],draws_xr:[0,8,14,17],drawset:[0,10],due:1,dump:0,dure:[0,5,8,11,12,13,16],e:[0,4,5,8,10,12,14,17],each:[0,5,8,10,14,17],effect:[0,2,8,12,14],effici:[9,12],egg:4,eigen_3:11,eight_school:8,eight_schools_fit:8,eight_schools_model:8,eight_schoolsk2xullo4:8,either:[0,4,8,10,11,14,17],elaps:[8,15],elbo:[0,13],elbo_sampl:[0,5,13],element:[0,12,17],els:13,empti:[0,5],en:[9,10,12,13],enabl:[8,11],encapsul:[0,5],encod:8,encount:[0,8],end:[0,5,8,12,14,17],energi:[0,8,12,14],energy__:[8,14,17],engag:[0,8,15],engin:[3,5,8,15,16],enough:4,enterpris:17,entir:[0,8,15],entri:0,environ:[0,1,4,8],environment:0,ephemer:8,equal:[0,5],equival:4,err:8,error:[0,1,5,8,11,12,15],essenti:17,estim:[0,3,5,6,7,8,10,13,14,16,17],et:12,eta:[0,5,13],eta_should_fail:13,etc:10,eval_elbo:[0,5,13],evalu:[0,8,12,15,17],even:[0,1,11],event:10,evid:13,ex:[0,8,10,11,12,13,14,17],exact:[8,16],exactli:0,examin:[8,10],exampl:[0,1,3,4,6,8,9,11,12,14,15,17],except:[0,1,12],exe_fil:[0,11,14,17],exe_info:[0,8,14],execut:[0,8,10,11,12,13,14,17],exist:[0,4,5,10,15,16,17],exit:[0,1,8],exot:0,expans:17,expect:[0,5,8,10,15],expens:10,experi:[8,12],explor:[8,12],exploratori:2,expos:[5,17],extens:8,extern:[3,6,7],extract:16,f:[4,8,14],fail:[1,8,11,12,13],fall:13,fals:[0,5,8,11,12,13,14,15,17],famili:13,familiar:11,far:0,fatal:[11,12],favor:17,fd:8,featur:[0,11],fewer:12,field:12,figur:0,file:[0,1,3,5,9,10,11,12,13,14,16,17],filehandl:15,filenam:[0,8,15],filepath:[0,14,17],filesystem:[16,17],filetyp:8,fill:17,filsystem:16,find:[5,9,13,17],findal:13,fine:15,finish:8,first:[0,8],fit:[0,1,2,3,5,10,11,15,16,17],fix:1,fixed_param:[0,5],flag:[0,5,8,11,17],flatten:0,float64:[8,14],focu:17,follow:[0,4,5,8,9,11,12,13,14,15,17],foo:[0,5],footprint:8,forc:[0,8,17],force_one_process_per_chain:0,forecast:2,forg:4,form:[0,8,17],format:[0,1,5,10,14],formatt:[0,15],former:14,forward:10,found:[0,5,8,9,10,12,13,14,17],fp:10,frame:[0,10],framework:17,free:4,from:[0,1,3,5,8,9,10,11,12,13,14,15,16,17],from_csv:[1,3,5],full:[0,1,10,13],fulli:[8,12,17],fullrank:0,functionaltii:0,further:[4,8,12],furthermor:12,g:[0,4,5,8,11,14,17],gamma:[8,15],gener:[0,1,3,5,6,7,8,11,14,16,17],generate_quant:[0,10,17],generatequantitiesarg:5,geometri:8,get:[10,11],get_err_msg:5,get_logg:13,getlogg:15,git:[0,4],github:[0,1,3,8],given:[0,3,8,10,14,16],glob:0,global:[0,1],gnu:[4,17],good:[12,13],gq:0,gq_output_dir:0,grad_sampl:[0,5,13],gradient:[0,8,12,13,15],grain:15,grainsiz:8,great:2,greater:[0,8,12],gt:[8,10,11,12,13],guarante:[0,5],guid:[0,3,4,8,10,11,12,13,14,15,17],guidanc:14,gz:0,h:[0,5,15],ha:[0,5,8,9,13,16,17],had:[1,8,12],hamiltonian:[5,8,14],handler:15,harder:1,hat:[0,8,12,14],have:[0,4,8,12,13,14],head:8,header:[0,5,11,17],hello:[3,6,10],help:4,here:[5,10,11],hessian:0,heurist:13,hidden:[0,4,15],hierarch:8,high:[0,8,12],higher:0,highli:8,highlight:2,histori:0,history_s:[0,5],hit:[0,8],hmc:[0,1,3,6,7,15,16,17],holidai:2,home:[0,4,8,10,11,12,13,14,15],hostedtoolcach:[9,10,12,13],how:[0,8,12],howev:0,hpp:[5,11],html:[0,9,10,12,13],http:[0,4,8,9,10,12,13],hunt:15,i:[0,1,4,8,10,11,12,14,17],id:[0,5,8,15],idx:[5,15],ignor:[0,11],illustr:14,iloc:10,immut:5,implement:[4,8,13],improv:[0,1,12],inc_iter:0,inc_sampl:[0,10],inc_warmup:0,includ:[0,2,5,10,11,15],inclus:0,incomplet:[8,12],increas:[0,8,12],independ:8,index:3,indic:[5,8,12,14,17],individu:[0,8,17],infer:[0,3,5,6,7,8,14,16],inferencemetadata:[0,17],info:[0,4,8,9,10,11,12,13,14,15],inform:[0,5,8,10,12,13,14,16,17],init:[0,5,8,12,13,15],init_alpha:[0,5],init_buff:[8,15],initi:[0,1,3,6,7,8],inlin:11,input:[0,1,3,5,8,10,13],inspect:[0,8,10,11,13,14],instabl:12,instal:[0,1,3,8,14,15],install_cmdstan:[1,3],install_cxx_toolchain:0,instanti:[0,5,8,9,10,13,14,17],instead:[4,8],instruct:[4,8],insur:8,int64:[8,14],intal:0,integ:[0,8],intel:8,intend:4,interact:[0,1,4],interest:[0,3,6,7,14,16,17],interfac:[0,2,4,16,17],intermedi:0,intern:[0,1,11],interv:[0,10,11,14],introduc:0,inv_metr:0,invalid:5,invoc:[0,5],invok:[4,13],involv:2,io:[9,10,12,13],iprogress:[9,10,12,13],ipywidget:[4,8,9,10,12,13],is_empti:5,isn:[0,14],issu:[1,4,5,8,13,15],issuecom:0,item:[0,8,14],iter:[0,5,8,12,13,14,15,17],iter_sampl:[0,5,8],iter_warmup:[0,5,8,12],iteraton:12,its:[0,1,4,5,8,9,12,14],itself:14,j:8,job:[12,17],join:[4,9,10,13,14,15,17],joint:[0,10,14],js:8,json:[0,8,9,10,12,13,14,15,17],julia:2,jupyt:[4,8,9,10,12,13],jupyterlab:8,just:14,k:[8,14],kappa:[8,15],kei:[0,8,14],kind:17,know:11,l:9,label:[0,4],languag:[8,14,17],larger:16,last:[0,13],later:0,latest:[0,4,13],latter:14,lazili:[0,8],lbfg:0,leapfrog:[8,15],least:[9,12],leav:[0,5],len:[0,13],length:[0,5,10,14],lenient:0,less:0,let:[11,13],level:[1,17],levelnam:15,lib:[9,10,11,12,13],librari:[8,17],lightweight:[3,16],like:[0,13],likelihood:[0,3,6,7,8,10,12,14],likewis:0,line:[0,1,3,4,5,11,12,13,15,16],linear:[2,12],link:[8,11,17],linux:4,list:[0,5,10],load:10,locat:[0,3,5,8,17],log:[0,1,3,8,10,12,14],log_g__:13,log_p__:13,longer:1,look:[14,15],lot:[1,15],low:[0,12,17],lower:[8,10,11,12,13,14],lp__:[0,5,8,9,10,12,13,14,17],ls:[4,15],lt:[8,10,11,12,13],m:[0,5,15],mac:4,machin:[0,8,17],maco:4,macosx:4,made:[0,5],mai:[0,4,8,12,13,15],major:0,make:[0,4,8,11,14,17],make_odd:11,makefil:[0,5,17],manag:[0,3,14,15,16,17],mani:[0,8,16,17],manual:0,map:[0,5,8,14,16,17],map_rect:0,march:11,markov:0,mass:0,match:[0,12],math:11,matrix:[0,5,12,14],max_depth:[8,15],max_line_length:0,max_treedepth:[0,5,8],maximum:[0,3,6,7,8,14],mc:[0,8],mcmc:[0,3,6,7,14],mcmc_random_inits_fit:12,mcmc_sampl:[0,10],mcmc_vb_inits_fit:12,mcse:[8,10,12,14],mean:[0,8,10,12,13,14,17],meanfield:0,measur:[8,12],median:13,memori:[0,8,14,16,17],messag:[0,1,5,8,15],met:0,metadata:[0,3,8,14],method:[0,3,4,5,9,10,11,12,13,14,15,16,17],method_arg:5,method_vari:[0,8,14,17],method_vars_col:[5,8,14,17],metric:[0,5,8,12,14,15],metric_fil:[8,15],metric_typ:[0,8,14],metropoli:0,might:16,mingw:4,minim:[8,16],minimum:1,minor:[0,5],misc:8,mix:[8,12],mle:[0,9],modal:17,mode:[0,1,9,17],model:[0,1,2,3,4,5,9,10,11,15,16],model_ex:5,model_extern:11,model_fail:13,model_nam:[0,5,15],model_ppc:10,modern:4,modifi:0,modul:15,momentum:0,monitor:17,mont:[8,14],more:[0,1,8,12,14,15,16,17],most:[0,1,4,13],move:[0,5,8,15],mtune:11,mu:[8,13],much:[8,17],multi:3,multipl:[0,8,10],multiprocess:0,mung:0,must:[0,4,5,8,12,17],my:8,my_cool_vari:1,my_local_cmdstan:4,my_model:17,my_stanfil:17,n:[0,4,8,10,11,12,13,14],n_eff:[8,10,12,14],n_game:8,n_leapfrog__:[8,14],n_redcard:8,name:[0,1,4,5,8,10,13,14,15,17],namespac:11,narr:6,nativ:[4,11],nbextens:8,ndarrai:[0,8,14,17],necessari:[3,12,17],necessarili:[4,14],need:[4,5,8,11,12,17],network:0,never:17,new_opt:5,new_quant:10,newer:[0,4,8,17],newton:[0,9,12],next:[0,17],nfirst:8,niter:8,nmetric:8,nmetric_typ:8,node:17,nomin:[8,12],non:[0,2,5,12,14,17],none:[0,5,11,15],noninform:12,norm:0,normal:8,normal_lpdf:12,notat:0,note:[0,4,14],notebook:[4,10],notebook_tqdm:[9,10,12,13],notic:15,now:[1,15],num_chain:[5,15],num_draws_sampl:[0,8,14],num_draws_warmup:0,num_proc:5,num_process:15,num_sampl:[8,15],num_thread:[8,15],num_warmup:[8,15],number:[0,1,5,8,10,13,14],numer:0,numpi:[0,8,14,17],nut:[0,3,5,6,7,8,15,16,17],o3:11,o:[0,11],object:[0,1,3,5,8,9,10,12,13,14,15,17],observ:[10,14],obtain:[3,17],occur:1,odd:11,off:5,offset:0,often:8,ok:8,okai:11,older:0,omit:[0,15],onc:[1,8,16],one:[0,4,8,13,14,15,16,17],one_process_per_chain:5,onli:[0,1,4,8,12,13,15,17],open:[5,8,10,15,17],oper:[0,4],opt:[9,10,12,13],optim:[0,1,5,9,14,16,17],optimized_iterations_np:0,optimized_iterations_pd:0,optimized_params_dict:[0,9],optimized_params_np:[0,9],optimized_params_pd:[0,9],option:[0,4,5,8,15,17],order:[0,4,8,14,17],ordereddict:[9,13],org:[0,4,8],origin:8,os:[0,4,5,8,9,10,12,13,14,15,17],ostream:11,other:[0,2,14],otherwis:0,otpim:9,ouput:0,our:10,out:[0,2,5,14,17],outag:0,outcom:[10,14],output:[0,1,3,4,5,6,10,11,12,13,14,16],output_dir:[0,5,8,13,15],output_fil:[8,15],output_sampl:[0,5,13],outsid:12,over:[0,8,13,14,17],overal:8,overrid:[0,4],override_opt:0,overview:[3,6],overwrit:[0,1],overwrite_fil:0,overwritten:0,own:[1,4,5,9,15],packag:[0,2,3,8,9,10,12,13,14],page:[1,2,4],pair:[0,5,17],panda:[0,8,10,14,17],paper:12,parallel:[0,3,5,12,17],parallel_chain:[0,8],paramet:[0,5,9,10,11,12,13,14,17],parameter:[8,12],pars:[0,5,14,17],part:[0,2],partial_sum:8,particular:8,pass:[0,8,17],pat:13,path:[0,4,5,8,9,10,13,14,15,17],pathfind:12,pathlik:[0,5],pathnam:0,pattern:0,penal:[0,9],per:[0,5,12,14,15,17],percentil:0,perform:[12,17],period:0,persist:16,phase:[0,12],pickl:1,piggi:2,pip:4,platform:17,pleas:[5,9,10,12,13],plu:[0,2,8,14,15],point:[0,4,17],popul:0,portion:11,posit:[0,12],possibl:[8,12,15,16],post:[0,1,8],posterior:[0,2,3,8,12,13,14,17],posteriordb:12,potenti:[0,8,12,14,16],pre:[2,4],preceed:0,precis:[0,1],predict:3,prefer:10,present:[0,11,14],preserv:0,previou:1,previous:1,primarili:[4,15],princip:17,print:[0,8,9,10,11,12,13,14,15],prior:[8,10,11,12,14],probabl:[0,3,10,14,16],problem:[0,8,12,14],procedur:2,proceed:[12,13],process:[0,3,5,9,10,11,12,13,14,15,17],produc:[0,5,8,10,12,13,15,17],product:[16,17],profil:[0,5,8,15],profile_fil:[5,8,15],program:[0,1,4,5,9,10,11,14,16,17],progress:[0,4,5],project:[3,4],promot:11,promote_arg:11,prompt:[0,4],properli:[4,8,14],properti:[0,5,8,9,13,14,17],prophet:2,provid:[0,3,4,6,8,9,11,12,13,14,16,17],pseudo:8,pstream__:11,pthread:11,pull:0,pure:4,py:[8,9,10,11,12,13],pypi:3,pystan:[4,16],python3:[4,9,10,12,13],python:[0,1,2,4,8,9,10,12,13,14,15,16,17],quantiti:[0,1,3,6,7,8,11,14,16,17],quantitit:10,quasi:[9,12],question:[4,8],quit:11,quot:12,r:[0,8,10,12,14,15],r_hat:[8,10,12,14],rais:[0,5,13],random:[0,5,8,12,15],randomli:12,randomst:0,rang:[0,10,12],rapidjson_1:11,rate:[0,8],rather:[0,1],rdump:0,re:[0,8,10,12,13,17],reach:0,read:[0,1,8,14],readlin:15,readthedoc:[9,10,12,13],real:[8,10,11,12,14,17],reason:[4,8],rebuild:0,recent:13,recogn:1,recommend:[1,4,17],recompil:[0,8],record:[0,5,8],redcard:8,redcard_fit:8,redcard_model:8,redcard_reduce_sum:8,reduc:8,reduce_sum:[0,8,17],refactor:5,refer:[3,12],reflag:8,refresh:[0,5,8,13,15],regardless:0,regist:4,regress:12,regulariz:[8,12],rel:0,relat:9,releas:[0,1,4],relev:[8,11],remain:[0,17],remov:[0,1,8,12,15],reorgan:1,reparameter:[8,12],replac:0,replic:10,report:[0,1,8,10,12,15],repositori:3,repres:14,represent:8,reproduc:[0,12],request:[0,5],requir:[0,3,8,12,14,17],require_converg:[0,12,13],resolv:11,respect:[0,14,17],restrict:14,result:[0,3,5,8,10,12,16,17],retcod:15,retri:0,retriev:9,reus:8,rng:0,robust:1,roll:13,root:1,row:[0,5,8,14,17],rstan:16,rtool:4,rubin:8,rule:17,run:[0,1,3,4,5,8,9,10,11,13,14,15],runner:[10,12,13,14,15],runset:[0,15],runtim:1,runtimeerror:13,s:[0,3,4,5,8,9,10,13,14,15,17],same:[0,8,17],sampl:[0,3,5,6,7,10,11,12,13,14,15,16,17],sample_plu:10,sampler:[0,3,5,6,7,10,15,16,17],satisfactori:[8,12,14],save:[0,2,3,16],save_csvfil:[0,1,5,8,15],save_iter:[0,5],save_latent_dynam:[0,5,13],save_profil:[0,5,13],save_warmup:[0,5,8,15],sblr:12,sblri:12,scalabl:13,scalar:[0,5],scale:[0,8,12],school:8,script:[1,4,12,17],search:[0,13],season:2,second:[0,8,14,15],section:[0,4,6,10,13,17],see:[0,1,4,8,9,10,11,12,13,14,15,17],seed:[0,5,8,12,13,14,15],seen:8,select:[4,8],self:13,semant:11,send:15,sent:[0,5],separ:4,sequenc:[0,13],sequenti:0,seri:[0,2,17],serial:14,session:[0,8,15,16],set:[0,3,4,5,8,9,10,12,13,14,15,16,17],set_cmdstan_path:[3,4],set_make_env:3,setformatt:15,setlevel:15,sever:4,shape:[0,8,10,13,14],share:8,shell:[4,8],shortcut:0,should:[0,1,4,8,11,12,17],show:[0,10,12,15],show_consol:[0,8,12,13],show_progress:[0,8,15],show_vers:[1,3],sig_fig:[0,5,8,13,15],sigma:[8,12],sign:[10,11],signific:0,similarli:17,simpl:[8,10,13],simul:[0,10,12],sinc:[8,17],singl:[0,5,8,14,17],site:[9,10,12,13],size:[0,8,12,14],skip:5,slice_n_redcard:8,small:[3,8,16],smaller:0,so:[0,4,11,13,17],softwar:3,some:[0,1,6,8,12,15],someth:[0,5],sourc:[0,5],space:[0,17],span:[0,17],spawn:0,specif:[0,4,5,17],specifi:[0,4,5,8,9,11,12,14,15,16,17],sped:1,speed:[8,12],spent:17,split:[8,12,14],src:11,src_info:0,stabl:[0,9,10,12,13],stan:[0,1,2,3,4,5,6,7,9,11,15,16],stan_cpp_optim:[8,14],stan_fil:[0,8,9,10,11,12,13,14,15,17],stan_math:11,stan_mpi:[8,14],stan_no_range_check:[8,14],stan_num_thread:8,stan_opencl:[8,14],stan_thread:[0,8,14,17],stan_vari:[0,1,8,11,12,14,17],stan_vars_col:[5,8,14,17],stan_vars_dim:[5,17],stan_vars_typ:5,stan_vers:[8,14],stan_version_major:[8,14],stan_version_minor:[8,14],stan_version_patch:[8,14],stanc3:[0,11],stanc:[0,5,11,14,17],stanc_opt:[0,5,11,14,17],stancflag:11,stancsv:5,standard:[0,8,12,14],stanfil:0,stanfit:[0,5],stansummari:[0,1,3],stanvari:13,start:[0,2,8,9,10,11,12,13,14,15],state:[0,8,10],statement:[0,8],statist:[0,2,8,10,14,17],statu:[10,11,12],std:[8,11],stddev:[8,10,12,14],stderr:0,stdout:[0,8,15],stdout_fil:5,step:[0,8,15,17],step_siz:[0,5,8,14],stepsiz:[8,9,12,13,15],stepsize__:[8,14],stepsize_jitt:[8,15],still:1,stochast:13,storag:[0,2],store:[0,4],str:[0,5],stream:[0,8],strftime:0,strictli:0,string:[0,5,8],strip:15,structur:[0,14,17],studi:8,subdirectori:4,subprocess:[0,5],subsequ:0,substant:14,substanti:12,success:[0,10,14,17],suffici:0,suffix:[0,8,15],suggest:[8,12],sum:8,summar:[0,16],summari:[0,1,8,10,12,14],sundial:11,sundials_6:11,suppli:[5,17],support:[0,1,16,17],sure:0,synonym:0,syntax:[0,1,14],system:[0,4],t0:[8,15],t0__:11,t:[0,4,8,10,12,14],tabular:17,take:[0,4,8,10,15,17],taken:[8,12],tar:0,target:[0,8,12],tau:8,tbb:8,tbb_2020:11,techniqu:13,tell:11,templat:[0,3,11,15],temporari:[0,8,15,16,17],term:[8,17],term_buff:[8,15],termin:[8,11,15],test:[0,10,16,17],text:0,than:[0,8,12,16,17],thei:[1,11],them:2,theori:10,therefor:[4,5,8,12,17],theta:[0,8,9,10,11,13,14],thi:[0,2,4,5,6,8,9,10,11,12,13,14,15,16,17],thin:[0,5,8,15],thing:0,those:0,thread:[0,1,3],threads_per_chain:[0,8],three:9,threshold:[8,12,13],through:[0,15],throughout:16,thu:[0,8,16],time:[0,2,8,15,17],time_fmt:[0,5,13],timestamp:[0,8],tmp576tsk6g:8,tmp:[8,12,14,15],tmpcmi54clh:[14,15],tmpkher3kfz:12,togeth:13,tol_grad:[0,5],tol_obj:[0,5],tol_param:[0,5],tol_rel_grad:[0,5],tol_rel_obj:[0,5,13],toler:0,too:0,took:[8,15],tool:[4,11,17],toolchain:[3,14],topic:[3,6,7],total:[0,8,14,15],toward:0,tqdm:[0,4,8,9,10,12,13],tqdmwarn:[9,10,12,13],traceback:13,track:0,trajectori:8,transcript:5,transform:[0,8,10,14],transit:[0,8,12,14,15],translat:[0,11,17],treat:8,treatment:8,tree:0,treedepth:[0,1,8,12,14],treedepth__:[8,14],trend:2,tri:1,trial:10,trivial:[10,14],troubl:[8,12],trust:17,tune:[0,14],tupl:[0,5],turn:8,tutori:10,two:[8,9,14,17],txt:[0,8,15],type:[0,5,10,11],typenam:11,typic:0,typo:1,u:8,ujson:10,unclear:12,unconstrain:[0,17],undefin:11,underli:4,underlyingli:[0,8,15],uniform:[0,10,11,12,14],union:[0,5],uniqu:0,unless:[0,8,11,13],unlik:10,unneed:17,unpack:0,unspecifi:0,unstabl:12,up:[0,1,5,8,12,15,17],updat:[0,1,9,10,12,13],upgrad:4,upon:[0,8],upper:[10,11,14],url:4,us:[0,1,2,3,4,5,6,7,8,9,10,13,15,16,17],usag:6,user:[0,2,3,4,5,8,10,11,12,13,14,15,16,17],user_head:[0,5,11],user_instal:[9,10,12,13],usual:[0,4,17],util:[0,3,4,5,13,17],v:[4,8,14],valid:[0,3,4,5,8,13],validate_cpp_opt:5,validate_stanc_opt:5,validate_user_head:5,valu:[0,5,8,10,12,14,17],valueerror:5,vari:4,variabl:[0,1,4,5,10,14,17],variant:8,variat:[0,3,5,6,7,14,17],variational_params_dict:[0,13],variational_params_np:[0,13],variational_params_pd:[0,13],variational_sampl:[0,13],variou:[1,4],vb:0,vb_fit:12,vb_var:12,vector:[0,5,8,10,12,14],verbos:0,veri:12,verifi:14,version:[0,1,4,5,8],vi:13,vi_fail:13,via:[0,3,4,12,17],view:3,virtual:4,visibl:8,visual:8,wa:[0,8,12],wai:[0,2,4],wait:0,want:4,warm:[8,15],warmup:[0,1,5,8,12,13,15],warn:[0,1,8,11,12,13],wasserstein:12,we:[1,4,8,9,10,11,12,14,15,17],weekli:2,well:[0,4,8,10,12,13,17],were:[0,1],what:[3,11],whatev:8,when:[0,1,2,4,5,8,10,12,13,15,17],whenev:17,where:[0,1,2,8,14],whether:[0,8],which:[0,1,3,4,5,8,9,10,12,13,14,15,16,17],whichev:4,whose:[0,14],widget:8,widgetsnbextens:8,window:[0,4,8,13,15],within:[0,4,17],without:[0,8,11,16],wno:11,work:[1,2,8,10,12,13,14,15],workflow:[3,6,14],world:[3,6,10,17],wors:16,worth:14,would:[1,8,10,13,15],wrap:[0,3,4,8,16],wrapper:2,write:0,write_stan_json:[3,17],writeabl:5,written:[0,1,4,8,15,16,17],x64:[9,10,12,13],x:[0,11,12,14],xarrai:[0,4,8,14,17],xcode:4,y:[0,5,8,10,11,12,14],y_rep:10,yearli:2,yet:11,you:[0,1,2,4,5,8,11,12,13,15,16],your:[1,4,8,12,15],yourself:[4,5],yyyymmddhhmm:0,yyyymmddhhmmss:[8,15],zhang:12},titles:["API Reference","What\u2019s New","Community","cmdstanpy \u2013 Python interface to CmdStan","Installation","Internal API Reference","User\u2019s Guide","CmdStanPy Examples","MCMC Sampling","Maximum Likelihood Estimation","Generating new quantities of interest.","Advanced Topic: Using External C++ Functions","Using Variational Estimates to Initialize the NUTS-HMC Sampler","Variational Inference in Stan","\u201cHello, World!\u201d","Controlling Outputs","Overview","CmdStanPy Workflow"],titleterms:{"0":1,"1":1,"2":1,"3":1,"4":1,"5":1,"6":1,"class":[0,5],"export":17,"function":[0,4,11],"new":[1,10],The:14,access:[8,14],add:10,advanc:11,algorithm:12,api:[0,5],assembl:17,bernoulli:[10,13],c:[4,11],chain:8,check:[8,10],cmdstan:[3,4,14,17],cmdstan_path:0,cmdstan_vers:0,cmdstanarg:5,cmdstangq:0,cmdstanmcmc:0,cmdstanml:0,cmdstanmodel:0,cmdstanpi:[1,3,4,7,17],cmdstanvb:0,commun:2,compil:17,compileropt:5,conda:4,control:15,cross:8,csv:15,data:[8,12,14,17],diagnos:14,diagnost:8,dii:4,directori:4,draw:8,engin:17,estim:[9,12],exampl:[7,10,13],extern:11,extract:8,file:[8,15],fit:[8,12,14],format:8,from:4,from_csv:0,gener:10,github:4,guid:6,hello:14,hmc:[8,12,14],infer:[12,13,17],inferencemetadata:5,initi:[12,17],input:[14,17],instal:4,install_cmdstan:[0,4],interest:10,interfac:3,intern:5,likelihood:9,locat:4,log:15,maximum:9,mcmc:8,meta:8,metadata:17,method:8,model:[8,12,13,14,17],multi:8,notebook:8,nut:[12,14],obtain:12,optimizearg:5,output:[8,15,17],overview:[8,16],packag:4,parallel:8,paramet:8,per:8,posterior:10,predict:10,prerequisit:8,process:8,program:8,progress:8,project:2,pypi:4,python:3,quantiti:10,refer:[0,5],repositori:4,requir:4,result:14,run:[12,17],runset:5,s:[1,6,12],sampl:8,sampler:[8,12,14],samplerarg:5,save:8,set_cmdstan_path:0,set_make_env:0,show_vers:0,softwar:2,stan:[8,10,12,13,14,17],stansummari:14,structur:8,summar:8,tabular:8,templat:2,thread:8,toolchain:4,topic:11,tune:8,us:[11,12,14],user:6,util:14,valid:17,variabl:8,variat:[12,13],variationalarg:5,via:8,view:17,what:1,within:8,workflow:17,world:14,write_stan_json:0}}) \ No newline at end of file +Search.setIndex({docnames:["api","changes","community","index","installation","internal_api","users-guide","users-guide/examples","users-guide/examples/MCMC Sampling","users-guide/examples/Maximum Likelihood Estimation","users-guide/examples/Run Generated Quantities","users-guide/examples/Using External C++","users-guide/examples/VI as Sampler Inits","users-guide/examples/Variational Inference","users-guide/hello_world","users-guide/outputs","users-guide/overview","users-guide/workflow"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":5,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":3,"sphinx.domains.rst":2,"sphinx.domains.std":2,"sphinx.ext.intersphinx":1,"sphinx.ext.viewcode":1,nbsphinx:4,sphinx:56},filenames:["api.rst","changes.rst","community.rst","index.rst","installation.rst","internal_api.rst","users-guide.rst","users-guide/examples.rst","users-guide/examples/MCMC Sampling.ipynb","users-guide/examples/Maximum Likelihood Estimation.ipynb","users-guide/examples/Run Generated Quantities.ipynb","users-guide/examples/Using External C++.ipynb","users-guide/examples/VI as Sampler Inits.ipynb","users-guide/examples/Variational Inference.ipynb","users-guide/hello_world.rst","users-guide/outputs.rst","users-guide/overview.rst","users-guide/workflow.rst"],objects:{"":[[3,0,0,"-","cmdstanpy"]],"cmdstanpy.CmdStanGQ":[[0,2,1,"","chain_ids"],[0,2,1,"","chains"],[0,2,1,"","column_names"],[0,3,1,"","draws"],[0,3,1,"","draws_pd"],[0,3,1,"","draws_xr"],[0,2,1,"","metadata"],[0,3,1,"","save_csvfiles"],[0,3,1,"","stan_variable"],[0,3,1,"","stan_variables"]],"cmdstanpy.CmdStanMCMC":[[0,2,1,"","chain_ids"],[0,2,1,"","chains"],[0,2,1,"","column_names"],[0,3,1,"","diagnose"],[0,2,1,"","divergences"],[0,3,1,"","draws"],[0,3,1,"","draws_pd"],[0,3,1,"","draws_xr"],[0,2,1,"","max_treedepths"],[0,2,1,"","metadata"],[0,3,1,"","method_variables"],[0,2,1,"","metric"],[0,2,1,"","metric_type"],[0,2,1,"","num_draws_sampling"],[0,2,1,"","num_draws_warmup"],[0,3,1,"","save_csvfiles"],[0,3,1,"","stan_variable"],[0,3,1,"","stan_variables"],[0,2,1,"","step_size"],[0,3,1,"","summary"],[0,2,1,"","thin"]],"cmdstanpy.CmdStanMLE":[[0,2,1,"","column_names"],[0,2,1,"","metadata"],[0,2,1,"","optimized_iterations_np"],[0,2,1,"","optimized_iterations_pd"],[0,2,1,"","optimized_params_dict"],[0,2,1,"","optimized_params_np"],[0,2,1,"","optimized_params_pd"],[0,3,1,"","save_csvfiles"],[0,3,1,"","stan_variable"],[0,3,1,"","stan_variables"]],"cmdstanpy.CmdStanModel":[[0,3,1,"","code"],[0,3,1,"","compile"],[0,2,1,"","cpp_options"],[0,2,1,"","exe_file"],[0,3,1,"","exe_info"],[0,3,1,"","format"],[0,3,1,"","generate_quantities"],[0,2,1,"","name"],[0,3,1,"","optimize"],[0,3,1,"","sample"],[0,3,1,"","src_info"],[0,2,1,"","stan_file"],[0,2,1,"","stanc_options"],[0,2,1,"","user_header"],[0,3,1,"","variational"]],"cmdstanpy.CmdStanVB":[[0,2,1,"","column_names"],[0,2,1,"","columns"],[0,2,1,"","eta"],[0,2,1,"","metadata"],[0,3,1,"","save_csvfiles"],[0,3,1,"","stan_variable"],[0,3,1,"","stan_variables"],[0,2,1,"","variational_params_dict"],[0,2,1,"","variational_params_np"],[0,2,1,"","variational_params_pd"],[0,2,1,"","variational_sample"]],"cmdstanpy.InferenceMetadata":[[5,2,1,"","cmdstan_config"],[5,2,1,"","method_vars_cols"],[5,2,1,"","stan_vars_cols"],[5,2,1,"","stan_vars_dims"],[5,2,1,"","stan_vars_types"]],"cmdstanpy.cmdstan_args":[[5,1,1,"","CmdStanArgs"],[5,1,1,"","OptimizeArgs"],[5,1,1,"","SamplerArgs"],[5,1,1,"","VariationalArgs"]],"cmdstanpy.cmdstan_args.CmdStanArgs":[[5,3,1,"","compose_command"],[5,3,1,"","validate"]],"cmdstanpy.cmdstan_args.OptimizeArgs":[[5,3,1,"","compose"],[5,3,1,"","validate"]],"cmdstanpy.cmdstan_args.SamplerArgs":[[5,3,1,"","compose"],[5,3,1,"","validate"]],"cmdstanpy.cmdstan_args.VariationalArgs":[[5,3,1,"","compose"],[5,3,1,"","validate"]],"cmdstanpy.compiler_opts":[[5,1,1,"","CompilerOptions"]],"cmdstanpy.compiler_opts.CompilerOptions":[[5,3,1,"","add"],[5,3,1,"","add_include_path"],[5,3,1,"","compose"],[5,2,1,"","cpp_options"],[5,3,1,"","is_empty"],[5,2,1,"","stanc_options"],[5,2,1,"","user_header"],[5,3,1,"","validate"],[5,3,1,"","validate_cpp_opts"],[5,3,1,"","validate_stanc_opts"],[5,3,1,"","validate_user_header"]],"cmdstanpy.stanfit":[[5,1,1,"","RunSet"]],"cmdstanpy.stanfit.RunSet":[[5,2,1,"","chain_ids"],[5,2,1,"","chains"],[5,3,1,"","cmd"],[5,2,1,"","csv_files"],[5,2,1,"","diagnostic_files"],[5,3,1,"","get_err_msgs"],[5,2,1,"","method"],[5,2,1,"","model"],[5,2,1,"","num_procs"],[5,2,1,"","one_process_per_chain"],[5,2,1,"","profile_files"],[5,3,1,"","save_csvfiles"],[5,2,1,"","stdout_files"]],cmdstanpy:[[0,1,1,"","CmdStanGQ"],[0,1,1,"","CmdStanMCMC"],[0,1,1,"","CmdStanMLE"],[0,1,1,"","CmdStanModel"],[0,1,1,"","CmdStanVB"],[5,1,1,"","InferenceMetadata"],[0,4,1,"","cmdstan_path"],[0,4,1,"","cmdstan_version"],[0,4,1,"","from_csv"],[0,4,1,"","install_cmdstan"],[0,4,1,"","set_cmdstan_path"],[0,4,1,"","set_make_env"],[0,4,1,"","show_versions"],[0,4,1,"","write_stan_json"]]},objnames:{"0":["py","module","Python module"],"1":["py","class","Python class"],"2":["py","property","Python property"],"3":["py","method","Python method"],"4":["py","function","Python function"]},objtypes:{"0":"py:module","1":"py:class","2":"py:property","3":"py:method","4":"py:function"},terms:{"0":[0,3,4,8,9,10,11,12,13,14,15],"00":[8,10,11,12],"000000":[8,10,14],"000014":12,"000015":12,"000016":12,"000018":12,"000119":12,"000150":12,"000210":12,"000224":12,"000229":12,"000230":12,"000259":12,"000320":12,"000410":12,"000430":12,"000440":12,"000480":12,"00056":14,"000560":12,"000590":12,"000938":12,"000952":12,"001":12,"001033":12,"001064":12,"00107":12,"001150":12,"001160":12,"001200":12,"001290":12,"001380":12,"001480":12,"001540":12,"001690":12,"001816":12,"00200":12,"002013":12,"002043":12,"00210":12,"00222":8,"00227":14,"002279":12,"00237":10,"002416":12,"00249":8,"00252":12,"00292":12,"00304":10,"00321":12,"003258":10,"003402":14,"004":15,"00402":9,"00408":8,"00442":12,"00443":12,"004465":12,"00459":12,"005":8,"00512":12,"00593":8,"008":8,"00830":8,"00867":8,"009":8,"0095":12,"01":[8,12,15],"01065":8,"011019":12,"01177":8,"01286":12,"014":[8,15],"01400":12,"01515":8,"01754":14,"017540":14,"019946":14,"02":8,"020178":10,"022":8,"022930":8,"02660":14,"03000":12,"03097":12,"03165":12,"03376":14,"034300":12,"03514":12,"03708":8,"04":[8,15],"0410882":13,"0440459":13,"04571":12,"04607":12,"05":[8,12],"050000000000000003":[8,15],"056908":12,"06":[8,11,15],"06921":8,"07":11,"071122":10,"071505":12,"074654":10,"07508":8,"0797855":11,"08":13,"08910":12,"09":13,"09000":8,"09049":12,"09259":12,"1":[0,3,4,5,8,9,10,11,12,13,14,15],"10":[0,5,8,10,11,12,14,15],"100":[0,8,15],"1000":[0,8,10,13,14,15],"100000":[8,12],"1001":[8,15],"1005":8,"10118":12,"103":12,"10348":8,"10383":12,"1048":8,"10549":12,"1075":12,"11":[8,10,12,14,15],"110":12,"1100":[8,15],"11393":12,"1155":8,"1188":8,"12":[8,10,12,14,15],"1200":[8,15],"121020":14,"121122":10,"123":12,"12345":12,"124882":11,"1265":14,"12798":14,"127980":14,"128":14,"13":[8,9,10,12,13,14,15],"1300":[8,15],"13552":10,"1369":8,"1381":10,"1382":12,"1384":10,"14":[8,10,11,12,14,15],"1400":[8,15],"14210":14,"1427":14,"14475":8,"145000":12,"147":12,"14700":12,"15":[8,10,14,15],"150":12,"1500":[8,15],"1501":13,"1502":13,"1503":13,"1504":13,"1505":13,"1506":13,"1507":13,"1508":13,"1509":13,"1510":13,"1511":13,"1512":13,"151280":14,"1513":13,"154":12,"156":12,"15686":8,"1569":8,"16":[8,10,11,12,14,15],"160":12,"1600":[8,15],"161":12,"165":12,"165672":11,"16590":8,"17":[8,10,14,15],"1700":[8,15],"17030":8,"170300":12,"17346":12,"1791":14,"179125":14,"18":[0,8,10,14,15],"180":12,"1800":[8,15],"18100":12,"18588":8,"18723":8,"19":[8,14,15],"1900":[8,15],"191":12,"1928":14,"192807":14,"196141":8,"19720":8,"1981":8,"1y":11,"2":[0,3,4,5,8,10,11,12,13,14,15],"20":[8,10,14,15],"200":[8,15],"2000":[8,15],"200006":9,"200k":8,"201329":8,"201524":8,"201912081451":0,"20220617170100_1":8,"20220822142956_0":8,"20220822142956_1":8,"20220822142956_2":8,"20220822142956_3":8,"20220822142956_4":8,"20220822143000_1":8,"20220822143000_2":8,"20220822143000_3":8,"20220822143000_4":8,"20220825132952_1":12,"20220825132952_2":12,"20220825132952_3":12,"20220825132952_4":12,"20220825132953_1":12,"20220825132953_2":12,"20220825132953_3":12,"20220825132953_4":12,"20220825133019_0":15,"20220825133019_1":[14,15],"20220825133019_2":[14,15],"20220825133019_3":[14,15],"20220825133019_4":[14,15],"20220825133020_0":15,"20220825133020_1":15,"20220825133020_2":15,"20220825133020_3":15,"20220825133020_4":15,"2035":12,"20418":11,"204862":14,"2049":14,"20515":14,"208":8,"21":[8,14,15],"21000":8,"212933":8,"21487":8,"218012":8,"22":[8,9,10,12,13,14,15],"221":8,"222510":8,"22993":14,"23":[8,14,15],"230":8,"23000":8,"230342":13,"231":12,"232":12,"23577":8,"238443":10,"239867":8,"24":[8,12,14,15],"240606":14,"243737":8,"244":12,"24696":8,"247262":14,"248383":14,"2484":14,"25":[0,8,9,11,15],"251358":8,"2514":8,"251858":10,"25419":8,"256":12,"26":[0,4,8,15],"2633":8,"26360":14,"266019":14,"26866":8,"26950":8,"27":[0,4,8],"27078":11,"27095":8,"28":[0,5,8,10],"281860":10,"285":8,"286286":14,"2863":14,"29":[0,1,8,9,10,12,13],"291636":8,"291685":8,"29736":14,"297600":8,"298657":8,"2987":8,"298720":14,"2d":0,"2e":8,"3":[0,3,4,8,9,10,11,12,13,14,15],"30":[8,12,13,14,15],"300":[8,15],"306462":8,"3065":8,"306500":8,"31":[8,14],"3115":8,"316140":8,"3197":8,"319739":8,"32":0,"32095":8,"321":0,"32134":10,"32203":10,"32500":8,"32530":8,"32760":8,"333000":12,"336594":12,"33900":[8,12],"34":[8,12],"34000":8,"34500":12,"35":[8,12,15],"35000":8,"357324":8,"3595":8,"36":14,"36157":8,"37":10,"371":12,"37150":12,"38":10,"38375":8,"384251":8,"384567":8,"3846":8,"384918":8,"39":[8,9,10,11,12,13],"39070":8,"39833":14,"3995":14,"3996":14,"3997":14,"3998":14,"3999":14,"3d":0,"3x3":0,"4":[0,3,4,8,10,11,12,13,14,15],"40":[8,15],"400":[8,15],"4000":[0,8,10,12,14],"40000":8,"40014":14,"406802":14,"41":12,"41040":8,"41370":8,"42000":12,"42595":14,"4344":12,"43540":8,"4385":12,"44390":8,"444746":8,"447597":8,"45":[8,12,15],"4508":8,"46135":8,"4664":12,"46798":15,"4701":8,"47110":12,"47117":12,"47301":8,"473461":10,"4786":12,"48":8,"482997":8,"485668":8,"4863":12,"48700":8,"49000":12,"4e":[8,15],"5":[0,3,8,9,10,11,12,13,14,15],"50":[0,8,10,11,12,15],"500":[8,15],"50420":12,"509565":14,"51":8,"5183":8,"518540":8,"52":[11,12],"52300":10,"52729":14,"53":12,"53000":8,"532000":12,"5331":8,"535956":8,"536282":10,"53896":8,"54000":12,"541000":12,"54890":8,"55":[8,15],"55157":8,"552":12,"556":12,"5595":14,"56":[8,13],"560000":12,"560479":10,"58":[8,11],"587":8,"58810":8,"59408":10,"5nm6as7u":0,"6":[0,3,8,10,11,12,13,14,15],"60":[8,15],"600":[8,15],"600678":14,"6143":8,"614841":11,"615":12,"62":12,"620000":12,"63000":12,"63194":14,"63811":8,"644710":8,"64600":12,"65":[8,15],"65889":8,"65978":8,"660":12,"67":12,"678800":12,"68000":8,"68264":10,"69180":10,"69372":14,"694":8,"69530":8,"69607":8,"7":[1,8,10,11,12,13,14,15],"70":[8,15],"700":[8,15],"700000":12,"701880":8,"70257":8,"70500":12,"708830":12,"71000":12,"71660":8,"72":12,"725020":12,"73":10,"733817554":0,"743290":12,"74811":14,"749890":10,"75":[8,11,12,15],"750850":10,"75089":14,"753564":14,"75601":14,"756270":8,"76236":14,"76400":8,"76656":8,"77":10,"772870":8,"775":12,"78":0,"78531":14,"78559":10,"78582":8,"78775":14,"79174":14,"79992":8,"8":[0,4,8,10,12,14,15],"80":[8,12,15],"800":[8,15],"80000000000000004":[8,15],"80004":8,"801":8,"80420":8,"80780":8,"80th":0,"81000":8,"81503":8,"81820":8,"81941":14,"82455":8,"83414":8,"836793":10,"847043":8,"849600":12,"85":[8,15],"85139":8,"85200":12,"85500":8,"86":8,"86000":8,"86593":14,"865988":14,"867000":12,"87645":14,"88040":8,"88200":12,"887862":14,"88826":8,"88990":8,"89162":8,"893005":8,"894233":8,"89437":8,"896342":8,"9":[4,8,9,10,11,12,13,14,15],"90":[8,15],"900":[8,15],"900000":12,"90153":8,"907470":12,"909684":14,"90990":14,"92000":12,"926829":14,"93285":8,"93547":14,"938":12,"94000":8,"940254":10,"9424":12,"948321":14,"95":[0,8,10,12,15],"9513":12,"95250":8,"955873":14,"96000":8,"961783":12,"962000":12,"963840":12,"966000":10,"96852":8,"971817":8,"97621":8,"98000":12,"980410":10,"98088":8,"988312":14,"99":0,"990000":12,"991067":8,"991472":12,"992":[8,14],"993":[8,14],"993601":12,"993865":12,"994":[8,14],"995":[8,14],"996":[8,14],"996272":12,"996529":12,"997":[8,14],"997013":12,"997115":12,"997326":12,"997854":12,"997903":12,"998":[8,14],"998143":8,"998355":12,"998907":12,"999":[8,14],"999197":12,"999422":12,"999452":12,"999461":12,"999474":12,"999494":12,"999536":12,"999669":12,"999725":12,"999865":12,"999957":14,"999965":8,"boolean":0,"break":0,"case":[1,8],"class":[3,9,10,13,14,16,17],"const":11,"default":[0,1,4,5,8,9,12,14,15,16,17],"do":[1,3,4,9,12,13,14,16,17],"export":3,"final":0,"float":[0,5],"function":[1,2,3,6,7,8,12,13,14,15,17],"import":[1,4,8,9,10,11,12,13,14,15,17],"int":[0,5,8,10,11,12,14],"long":8,"new":[0,2,3,4,6,7,16],"public":[0,5],"return":[0,5,8,9,10,11,12,13,14,17],"throw":13,"transient":0,"true":[0,4,5,8,10,11,12,15,17],"try":[0,4,8,11,12,13,15],"var":[0,14],"while":[8,17],A:[0,2,4,14,17],As:[8,10,11],By:[0,4,8,12,14,16,17],For:[0,1,4,5,8,10,12,14,15,17],If:[0,4,5,8,11,12,13,15,17],In:[8,9,10,12,13,14,15,17],It:[0,3,4,8,10,12,14,16,17],Its:17,No:[5,11,12,14],On:[4,8,17],One:0,Or:15,Such:[8,12],The:[0,1,3,4,5,8,9,10,11,12,13,15,17],There:[0,4],These:[4,5,8,12,13],To:[4,8,10,11],Will:0,With:16,__:[0,5,13,14],__init__:5,abil:[0,2],abl:[1,8,12],about:[0,1,4,5,6,8,13,14],abov:[0,8,12],accept:[0,14],accept_stat__:[8,14],access:[0,1,3,13,17],accessor:[0,8,14,17],accord:0,accordingli:[4,8,15],across:[0,14,17],action:8,activ:4,actual:12,ad:5,adapt:[0,5,8,12,13,14,15],adapt_delta:[0,5],adapt_engag:[0,5,13],adapt_init_phas:[0,5],adapt_it:[0,5,13],adapt_metric_window:[0,5],adapt_step_s:[0,5],add:[0,3,5],add_include_path:5,addhandl:15,addit:[0,2,4,8,12,14,17],address:8,adjust:[0,8,13,15],advanc:[0,3,6,7],advantag:[8,9],advi:[0,12,13,16,17],after:1,afterward:4,al:12,algorithm:[0,3,5,8,9,13,14,15,16,17],all:[0,4,5,8,9,10,12,13,14,15,17],allong:4,allot:8,allow:[0,4,8,11,12,14,16,17],alreadi:[0,4,8],also:[0,4,8,10,12,14,15,17],altern:15,alwai:[0,5,17],amount:8,an:[0,1,2,4,5,8,10,11,13,14,15,16,17],analysi:[2,3,8,14,17],analyz:14,ani:[0,4,5,8,10,15,17],api:[3,13],app:4,appli:[10,17],appreci:8,appropri:[16,17],approxim:[0,12,13,14,16,17],ar:[0,2,4,5,8,9,10,11,12,13,14,15,16,17],arg:[0,5,15],argument:[0,4,5,8,10,11,12,13,14,15,17],aris:0,arrai:[0,5,8,10,11,12,14,17],arrang:0,arviz:2,asarrai:0,ascend:13,ascent:13,asctim:15,ask:[4,8],assembl:[0,1,3,5],assert:11,assum:[0,5],assumpt:17,attribut:[8,11,14],auto:[0,9,10,12,13],automat:[8,11,13,17],autonotebook:[9,10,12,13],avail:[0,4,8,9],averag:[10,13],avoid:[0,12,17],back:[0,2],backup:0,backward:[0,5],bad:5,bak:0,bar:[0,4,5,8],base:[0,2,5,8,10,11,16,17],basenam:0,basetyp:5,basic:[12,14],bayesian:[2,3,8,10,12,13,14,16,17],becaus:[0,8,12,13,16],been:[0,8,14],befor:[0,4,8],behavior:[0,16,17],behavoir:0,being:1,below:[4,8,12,13],bernoulli:[0,3,8,9,11,14,15],bernoulli_dir:[9,10,13],bernoulli_extern:11,bernoulli_model:[8,14],bernoulli_model_namespac:11,bernoulli_ppc:10,bernoulli_rng:10,bernoulli_rnkfcga:14,bernoullikolo7cku:8,bernoullil5w0sndq:15,bernoulliqddsdaoh:15,bernoullitkllicz1:8,best:13,beta:[0,8,10,11,12,14],better:[1,12],between:[0,5,8,14,17],beyond:16,bfg:[0,9],bfmi:[0,8,12,14],bias:[8,12],bin:[0,4,11],binari:14,binomial_logit_lpmf:8,bit:11,block:[0,1,8,10,17],blr2u04w073:12,blr:12,blrty52urbi:12,bool:[0,5],boost:11,boost_1:11,both:[0,1,4,8,10,11,17],bound:13,branch:4,brian:[8,11],browser:4,build:[0,1,4,8,17],built:15,c:[0,1,3,5,6,7,8,14,17],calcul:[10,14],call:[0,4,5,13,17],can:[0,1,4,8,10,11,14,15,16,17],cannot:0,canonic:[0,1],captur:15,care:4,carlo:[8,14],carri:17,caus:0,cc1plu:11,cell:13,center:[0,8],cf:17,chain:[0,5,9,10,11,12,13,14,15,17],chain_id:[0,5,15],chanc:[10,14],chang:[0,1,13],charact:0,check:[0,2,3,5,12,14,15,17],ci:0,clean:[0,1],cli11:11,clone:4,close:12,closer:[8,12],clutter:16,cmd:[5,15],cmdstan:[0,1,5,8,9,10,11,12,13,15,16],cmdstan_arg:5,cmdstan_config:[5,14,17],cmdstan_path:[3,4,9,10,13],cmdstan_vers:3,cmdstangq:[3,10,17],cmdstanmcmc:[1,3,8,10,14,15,17],cmdstanml:[3,9,14,17],cmdstanmodel:[1,3,5,8,9,10,11,12,13,14,15,17],cmdstanpi:[0,2,5,6,8,9,10,11,12,13,14,15,16],cmdstanpy_logg:15,cmdstanvb:[3,12,13,14,17],code:[0,1,5,8,10,11,12,14,15,17],collect:[0,4,17],column:[0,5,8,10,11,12,14,17],column_nam:[0,9,10,13],com:[0,4],combin:10,command:[0,1,3,4,5,8,11,15,16,17],comment:[0,5,11,17],common:[5,17],commun:3,compar:[0,11],comparison:[2,10,17],compat:[0,5,17],compil:[0,1,2,3,4,5,8,9,10,11,12,13,14,16],compiler_opt:[5,14],complet:[0,8,10,11,12,14],complex:[1,16],complic:11,compon:[0,4,17],compos:[0,5,8],compose_command:5,compris:0,comput:[0,1,8,10,13,14,17],computation:[10,12],concat_chain:0,concaten:14,conda:3,conda_prefix:4,condit:[0,8,10,12,14,16,17],condition:8,conduct:8,config:5,configur:[0,4,5,8,17],conflict:1,consid:[8,11,12,13],consist:[0,5,8,10],consol:[0,5,8,14,15],console_msg:15,constant:0,constrain:8,constructor:[0,8,11,17],contain:[0,1,4,5,8,10,14,17],containan:0,content:[5,11,13,15,17],contigu:0,control:[0,3,6,17],conveinc:12,convent:14,converg:[0,8,12,13],convers:0,convert:[0,17],cookiecutt:2,coordin:[8,14],copi:[0,8,12],core:[0,8,10],correct:[1,5],correctli:12,correspond:[0,8,12,14,17],correspondingli:17,correspons:10,could:1,covari:0,cpp:5,cpp_option:[0,5,8,14,17],cpu:0,cpu_count:0,creat:[0,4,8,15,17],csv:[0,3,5,8,10,12,14,17],csv_file:[5,8,15],current:[0,4,10,15],curv:8,cwd:15,d:[0,4,5,8,12,14],d_reentrant:11,daili:2,data:[0,2,3,5,9,10,11,13,15,16],data_dict:10,data_fil:[9,10,12,13,14,15],datafil:14,datafram:[0,8,10,14],dataset:[0,4,8,12,14,16,17],dboost_disable_assert:11,deactiv:4,debug:[0,8,15],decid:0,decis:[10,17],declar:[0,11],deepcopi:5,definit:11,delet:[0,8,15],delta:[8,12,15],demonstr:14,denot:13,dens:0,dense_:0,densiti:[9,10,12,13,14,17],depend:[0,8,17],deploi:16,deploy:16,deprec:0,depth:0,describ:[4,17],descript:[6,13],design:16,detail:0,detect:[8,12,14],determin:[5,13],dev:[0,4,8,11],develop:[4,8,15,16,17],devianc:10,diag:0,diag_:[0,8,14,15],diagnoal:0,diagnos:[0,3,8,12,13],diagnost:[0,1,2,5,14,17],diagnostic_fil:[5,8,15],diagon:0,dict:[0,5,8,17],dict_kei:[8,14],dictionari:[0,5,8,12,14,17],diff:0,differ:[0,9],differenti:[13,17],difficult:10,difficulti:8,dii:3,dim:0,dimens:[0,4,5,8,14,17],dimension:0,dir:[0,4,5,15],direct:0,directli:[0,8],directori:[0,1,3,5,8,11,12,15,16,17],disabl:[0,15],disk:0,dispar:8,displai:[0,4,8],distanc:12,distinct:[0,14],distribut:[0,2,8,12,14,17],diverg:[0,1,8,12,14],divergent__:[8,14],doc:[0,13],docsrc:[8,10,11,12,13,14,15],document:[0,1,5,11],doe:[0,14],doesn:[8,10,12],don:4,done:[8,9,10,11,12,13,14,15,17],doubl:0,down:15,download:[0,4],draw:[0,1,10,12,13,14,17],draws_pd:[0,1,8,10,14,17],draws_xr:[0,8,14,17],drawset:[0,10],due:1,dump:0,dure:[0,5,8,11,12,13,16],e:[0,4,5,8,10,12,14,17],each:[0,5,8,10,14,17],effect:[0,2,8,12,14],effici:[9,12],egg:4,eigen_3:11,eight_school:8,eight_schools_fit:8,eight_schools_model:8,eight_schoolsk2xullo4:8,either:[0,4,8,10,11,14,17],elaps:[8,15],elbo:[0,13],elbo_sampl:[0,5,13],element:[0,12,17],els:13,empti:[0,5],en:[9,10,12,13],enabl:[8,11],encapsul:[0,5],encod:8,encount:[0,8],end:[0,5,8,12,14,17],energi:[0,8,12,14],energy__:[8,14,17],engag:[0,8,15],engin:[3,5,8,15,16],enough:4,enterpris:17,entir:[0,8,15],entri:0,environ:[0,1,4,8],environment:0,ephemer:8,equal:[0,5],equival:4,err:8,error:[0,1,5,8,11,12,15],essenti:17,estim:[0,3,5,6,7,8,10,13,14,16,17],et:12,eta:[0,5,13],eta_should_fail:13,etc:10,eval_elbo:[0,5,13],evalu:[0,8,12,15,17],even:[0,1,11],event:10,evid:13,ex:[0,8,10,11,12,13,14,17],exact:[8,16],exactli:0,examin:[8,10],exampl:[0,1,3,4,6,8,9,11,12,14,15,17],except:[0,1,12],exe_fil:[0,11,14,17],exe_info:[0,8,14],execut:[0,8,10,11,12,13,14,17],exist:[0,4,5,10,15,16,17],exit:[0,1,8],exot:0,expans:17,expect:[0,5,8,10,15],expens:10,experi:[8,12],explor:[8,12],exploratori:2,expos:[5,17],extens:8,extern:[3,6,7],extract:16,f:[4,8,14],fail:[1,8,11,12,13],fall:13,fals:[0,5,8,11,12,13,14,15,17],famili:13,familiar:11,far:0,fatal:[11,12],favor:17,fd:8,featur:[0,11],fewer:12,field:12,figur:0,file:[0,1,3,5,9,10,11,12,13,14,16,17],filehandl:15,filenam:[0,8,15],filepath:[0,14,17],filesystem:[16,17],filetyp:8,fill:17,filsystem:16,find:[5,9,13,17],findal:13,fine:15,finish:8,first:[0,8],fit:[0,1,2,3,5,10,11,15,16,17],fix:1,fixed_param:[0,5],flag:[0,5,8,11,17],flatten:0,float64:[8,14],focu:17,follow:[0,4,5,8,9,11,12,13,14,15,17],foo:[0,5],footprint:8,forc:[0,8,17],force_one_process_per_chain:0,forecast:2,forg:4,form:[0,8,17],format:[0,1,5,10,14],formatt:[0,15],former:14,forward:10,found:[0,5,8,9,10,12,13,14,17],fp:10,frame:[0,10],framework:17,free:4,from:[0,1,3,5,8,9,10,11,12,13,14,15,16,17],from_csv:[1,3,5],full:[0,1,10,13],fulli:[8,12,17],fullrank:0,functionaltii:0,further:[4,8,12],furthermor:12,g:[0,4,5,8,11,14,17],gamma:[8,15],gener:[0,1,3,5,6,7,8,11,14,16,17],generate_quant:[0,10,17],generatequantitiesarg:5,geometri:8,get:[10,11],get_err_msg:5,get_logg:13,getlogg:15,git:[0,4],github:[0,1,3,8],given:[0,3,8,10,14,16],glob:0,global:[0,1],gnu:[4,17],good:[12,13],gq:0,gq_output_dir:0,grad_sampl:[0,5,13],gradient:[0,8,12,13,15],grain:15,grainsiz:8,great:2,greater:[0,8,12],gt:[8,10,11,12,13],guarante:[0,5],guid:[0,3,4,8,10,11,12,13,14,15,17],guidanc:14,gz:0,h:[0,5,15],ha:[0,5,8,9,13,16,17],had:[1,8,12],hamiltonian:[5,8,14],handler:15,harder:1,hat:[0,8,12,14],have:[0,1,4,8,12,13,14],head:8,header:[0,5,11,17],hello:[3,6,10],help:4,here:[5,10,11],hessian:0,heurist:13,hidden:[0,4,15],hierarch:8,high:[0,8,12],higher:0,highli:8,highlight:2,histori:0,history_s:[0,5],hit:[0,8],hmc:[0,1,3,6,7,15,16,17],holidai:2,home:[0,4,8,10,11,12,13,14,15],hostedtoolcach:[9,10,12,13],how:[0,8,12],howev:0,hpp:[5,11],html:[0,9,10,12,13],http:[0,4,8,9,10,12,13],hunt:15,i:[0,1,4,8,10,11,12,14,17],id:[0,5,8,15],idx:[5,15],ignor:[0,11],illustr:14,iloc:10,immut:5,implement:[4,8,13],improv:[0,1,12],inc_iter:0,inc_sampl:[0,10],inc_warmup:0,includ:[0,2,5,10,11,15],inclus:0,incomplet:[8,12],increas:[0,8,12],independ:8,index:3,indic:[5,8,12,14,17],individu:[0,8,17],infer:[0,3,5,6,7,8,14,16],inferencemetadata:[0,17],info:[0,4,8,9,10,11,12,13,14,15],inform:[0,5,8,10,12,13,14,16,17],init:[0,5,8,12,13,15],init_alpha:[0,5],init_buff:[8,15],initi:[0,1,3,6,7,8],inlin:11,input:[0,1,3,5,8,10,13],inspect:[0,8,10,11,13,14],instabl:12,instal:[0,1,3,8,14,15],install_cmdstan:[1,3],install_cxx_toolchain:0,instanti:[0,5,8,9,10,13,14,17],instead:[4,8],instruct:[4,8],insur:8,int64:[8,14],intal:0,integ:[0,8],intel:8,intend:4,interact:[0,1,4],interest:[0,3,6,7,14,16,17],interfac:[0,2,4,16,17],intermedi:0,intern:[0,1,11],interv:[0,10,11,14],introduc:0,inv_metr:0,invalid:5,invoc:[0,5],invok:[4,13],involv:2,io:[9,10,12,13],iprogress:[9,10,12,13],ipywidget:[4,8,9,10,12,13],is_empti:5,isn:[0,14],issu:[1,4,5,8,13,15],issuecom:0,item:[0,8,14],iter:[0,5,8,12,13,14,15,17],iter_sampl:[0,5,8],iter_warmup:[0,5,8,12],iteraton:12,its:[0,1,4,5,8,9,12,14],itself:14,j:8,job:[12,17],join:[4,9,10,13,14,15,17],joint:[0,10,14],js:8,json:[0,8,9,10,12,13,14,15,17],julia:2,jupyt:[4,8,9,10,12,13],jupyterlab:8,just:14,k:[8,14],kappa:[8,15],kei:[0,8,14],kind:17,know:11,l:9,label:[0,4],languag:[8,14,17],larger:16,last:[0,13],later:0,latest:[0,4,13],latter:14,lazili:[0,8],lbfg:0,leapfrog:[8,15],least:[9,12],leav:[0,5],len:[0,13],length:[0,5,10,14],lenient:0,less:0,let:[11,13],level:[1,17],levelnam:15,lib:[9,10,11,12,13],librari:[8,17],lightweight:[3,16],like:[0,13],likelihood:[0,3,6,7,8,10,12,14],likewis:0,line:[0,1,3,4,5,11,12,13,15,16],linear:[2,12],link:[8,11,17],linux:4,list:[0,5,10],load:10,locat:[0,3,5,8,17],log:[0,1,3,8,10,12,14],log_g__:13,log_p__:13,longer:1,look:[14,15],lot:[1,15],low:[0,12,17],lower:[8,10,11,12,13,14],lp__:[0,5,8,9,10,12,13,14,17],ls:[4,15],lt:[8,10,11,12,13],m:[0,5,15],mac:4,machin:[0,8,17],maco:4,macosx:4,made:[0,5],mai:[0,4,8,12,13,15],major:0,make:[0,4,8,11,14,17],make_odd:11,makefil:[0,5,17],manag:[0,3,14,15,16,17],mani:[0,8,16,17],manual:0,map:[0,5,8,14,16,17],map_rect:0,march:11,markov:0,mass:0,match:[0,12],math:11,matrix:[0,5,12,14],max_depth:[8,15],max_line_length:0,max_treedepth:[0,5,8],maximum:[0,3,6,7,8,14],mc:[0,8],mcmc:[0,3,6,7,14],mcmc_random_inits_fit:12,mcmc_sampl:[0,10],mcmc_vb_inits_fit:12,mcse:[8,10,12,14],mean:[0,8,10,12,13,14,17],meanfield:0,measur:[8,12],median:13,memori:[0,8,14,16,17],messag:[0,1,5,8,15],met:0,metadata:[0,3,8,14],method:[0,3,4,5,9,10,11,12,13,14,15,16,17],method_arg:5,method_vari:[0,8,14,17],method_vars_col:[5,8,14,17],metric:[0,5,8,12,14,15],metric_fil:[8,15],metric_typ:[0,8,14],metropoli:0,might:16,mingw:4,minim:[8,16],minimum:1,minor:[0,5],misc:8,mix:[1,8,12],mle:[0,9],modal:17,mode:[0,1,9,17],model:[0,1,2,3,4,5,9,10,11,15,16],model_ex:5,model_extern:11,model_fail:13,model_nam:[0,5,15],model_ppc:10,modern:4,modifi:0,modul:15,momentum:0,monitor:17,mont:[8,14],more:[0,1,8,12,14,15,16,17],most:[0,1,4,13],move:[0,5,8,15],mtune:11,mu:[8,13],much:[8,17],multi:3,multipl:[0,8,10],multiprocess:0,mung:0,must:[0,4,5,8,12,17],my:8,my_cool_vari:1,my_local_cmdstan:4,my_model:17,my_stanfil:17,n:[0,4,8,10,11,12,13,14],n_eff:[8,10,12,14],n_game:8,n_leapfrog__:[8,14],n_redcard:8,name:[0,1,4,5,8,10,13,14,15,17],namespac:11,narr:6,nativ:[4,11],nbextens:8,ndarrai:[0,8,14,17],necessari:[3,12,17],necessarili:[4,14],need:[4,5,8,11,12,17],network:0,never:17,new_opt:5,new_quant:10,newer:[0,4,8,17],newton:[0,9,12],next:[0,17],nfirst:8,niter:8,nmetric:8,nmetric_typ:8,node:17,nomin:[8,12],non:[0,2,5,12,14,17],none:[0,5,11,15],noninform:12,norm:0,normal:8,normal_lpdf:12,notat:0,note:[0,4,14],notebook:[4,10],notebook_tqdm:[9,10,12,13],notic:15,now:[1,15],num_chain:[5,15],num_draws_sampl:[0,8,14],num_draws_warmup:0,num_proc:5,num_process:15,num_sampl:[8,15],num_thread:[8,15],num_warmup:[8,15],number:[0,1,5,8,10,13,14],numer:0,numpi:[0,8,14,17],nut:[0,3,5,6,7,8,15,16,17],o3:11,o:[0,11],object:[0,1,3,5,8,9,10,12,13,14,15,17],observ:[10,14],obtain:[3,17],occur:1,odd:11,off:5,offset:0,often:8,ok:8,okai:11,older:0,omit:[0,15],onc:[1,8,16],one:[0,4,8,13,14,15,16,17],one_process_per_chain:5,onli:[0,1,4,8,12,13,15,17],open:[5,8,10,15,17],oper:[0,4],opt:[9,10,12,13],optim:[0,1,5,9,14,16,17],optimized_iterations_np:0,optimized_iterations_pd:0,optimized_params_dict:[0,9],optimized_params_np:[0,9],optimized_params_pd:[0,9],option:[0,4,5,8,15,17],order:[0,4,8,14,17],ordereddict:[9,13],org:[0,4,8],origin:8,os:[0,4,5,8,9,10,12,13,14,15,17],ostream:11,other:[0,2,14],otherwis:0,otpim:9,ouput:0,our:10,out:[0,2,5,14,17],outag:0,outcom:[10,14],output:[0,1,3,4,5,6,10,11,12,13,14,16],output_dir:[0,5,8,13,15],output_fil:[8,15],output_sampl:[0,5,13],outsid:12,over:[0,8,13,14,17],overal:8,overrid:[0,4],override_opt:0,overview:[3,6],overwrit:[0,1],overwrite_fil:0,overwritten:0,own:[1,4,5,9,15],packag:[0,2,3,8,9,10,12,13,14],page:[1,2,4],pair:[0,5,17],panda:[0,8,10,14,17],paper:12,parallel:[0,3,5,12,17],parallel_chain:[0,8],paramet:[0,5,9,10,11,12,13,14,17],parameter:[8,12],pars:[0,5,14,17],part:[0,2],partial_sum:8,particular:8,pass:[0,8,17],pat:13,path:[0,4,5,8,9,10,13,14,15,17],pathfind:12,pathlik:[0,5],pathnam:0,pattern:0,penal:[0,9],per:[0,5,12,14,15,17],percentil:0,perform:[12,17],period:0,persist:16,phase:[0,12],pickl:1,piggi:2,pip:4,platform:17,pleas:[5,9,10,12,13],plu:[0,2,8,14,15],point:[0,4,17],popul:0,portion:11,posit:[0,12],possibl:[8,12,15,16],post:[0,1,8],posterior:[0,2,3,8,12,13,14,17],posteriordb:12,potenti:[0,8,12,14,16],pre:[2,4],preceed:0,precis:[0,1],predict:3,prefer:10,present:[0,11,14],preserv:0,previou:1,previous:1,primarili:[4,15],princip:17,print:[0,8,9,10,11,12,13,14,15],prior:[8,10,11,12,14],probabl:[0,3,10,14,16],problem:[0,8,12,14],procedur:2,proceed:[12,13],process:[0,3,5,9,10,11,12,13,14,15,17],produc:[0,5,8,10,12,13,15,17],product:[16,17],profil:[0,5,8,15],profile_fil:[5,8,15],program:[0,1,4,5,9,10,11,14,16,17],progress:[0,4,5],project:[3,4],promot:11,promote_arg:11,prompt:[0,4],properli:[1,4,8,14],properti:[0,5,8,9,13,14,17],prophet:2,provid:[0,3,4,6,8,9,11,12,13,14,16,17],pseudo:8,pstream__:11,pthread:11,pull:0,pure:4,py:[8,9,10,11,12,13],pypi:3,pystan:[4,16],python3:[4,9,10,12,13],python:[0,1,2,4,8,9,10,12,13,14,15,16,17],quantiti:[0,1,3,6,7,8,11,14,16,17],quantitit:10,quasi:[9,12],question:[4,8],quit:11,quot:12,r:[0,8,10,12,14,15],r_hat:[8,10,12,14],rais:[0,5,13],random:[0,5,8,12,15],randomli:12,randomst:0,rang:[0,10,12],rapidjson_1:11,rate:[0,8],rather:[0,1],rdump:0,re:[0,8,10,12,13,17],reach:0,read:[0,1,8,14],readlin:15,readthedoc:[9,10,12,13],real:[8,10,11,12,14,17],reason:[4,8],rebuild:0,recent:13,recogn:1,recommend:[1,4,17],recompil:[0,8],record:[0,5,8],redcard:8,redcard_fit:8,redcard_model:8,redcard_reduce_sum:8,reduc:8,reduce_sum:[0,8,17],refactor:5,refer:[3,12],reflag:8,refresh:[0,5,8,13,15],regardless:0,regist:4,regress:12,regulariz:[8,12],rel:0,relat:9,releas:[0,1,4],relev:[8,11],remain:[0,17],remov:[0,1,8,12,15],reorgan:1,reparameter:[8,12],replac:0,replic:10,report:[0,1,8,10,12,15],repositori:3,repres:14,represent:8,reproduc:[0,12],request:[0,5],requir:[0,3,8,12,14,17],require_converg:[0,12,13],resolv:11,respect:[0,14,17],restrict:14,result:[0,3,5,8,10,12,16,17],retcod:15,retri:0,retriev:9,reus:8,rng:0,robust:1,roll:13,root:1,row:[0,5,8,14,17],rstan:16,rtool:4,rubin:8,rule:17,run:[0,1,3,4,5,8,9,10,11,13,14,15],runner:[10,12,13,14,15],runset:[0,15],runtim:1,runtimeerror:13,s:[0,3,4,5,8,9,10,13,14,15,17],same:[0,8,17],sampl:[0,3,5,6,7,10,11,12,13,14,15,16,17],sample_plu:10,sampler:[0,3,5,6,7,10,15,16,17],satisfactori:[8,12,14],save:[0,2,3,16],save_csvfil:[0,1,5,8,15],save_iter:[0,5],save_latent_dynam:[0,5,13],save_profil:[0,5,13],save_warmup:[0,5,8,15],sblr:12,sblri:12,scalabl:13,scalar:[0,5],scale:[0,8,12],school:8,script:[1,4,12,17],search:[0,13],season:2,second:[0,8,14,15],section:[0,4,6,10,13,17],see:[0,1,4,8,9,10,11,12,13,14,15,17],seed:[0,5,8,12,13,14,15],seen:8,select:[4,8],self:13,semant:11,send:15,sent:[0,5],separ:4,sequenc:[0,13],sequenti:0,seri:[0,2,17],serial:14,session:[0,8,15,16],set:[0,3,4,5,8,9,10,12,13,14,15,16,17],set_cmdstan_path:[3,4],set_make_env:3,setformatt:15,setlevel:15,sever:4,shape:[0,1,8,10,13,14],share:8,shell:[4,8],shortcut:0,should:[0,1,4,8,11,12,17],show:[0,10,12,15],show_consol:[0,8,12,13],show_progress:[0,8,15],show_vers:[1,3],sig_fig:[0,5,8,13,15],sigma:[8,12],sign:[10,11],signific:0,similarli:17,simpl:[8,10,13],simul:[0,10,12],sinc:[8,17],singl:[0,5,8,14,17],site:[9,10,12,13],size:[0,8,12,14],skip:5,slice_n_redcard:8,small:[3,8,16],smaller:0,so:[0,4,11,13,17],softwar:3,some:[0,1,6,8,12,15],someth:[0,5],sourc:[0,5],space:[0,17],span:[0,17],spawn:0,specif:[0,4,5,17],specifi:[0,4,5,8,9,11,12,14,15,16,17],sped:1,speed:[8,12],spent:17,split:[8,12,14],src:11,src_info:0,stabl:[0,9,10,12,13],stan:[0,1,2,3,4,5,6,7,9,11,15,16],stan_cpp_optim:[8,14],stan_fil:[0,8,9,10,11,12,13,14,15,17],stan_math:11,stan_mpi:[8,14],stan_no_range_check:[8,14],stan_num_thread:8,stan_opencl:[8,14],stan_thread:[0,8,14,17],stan_vari:[0,1,8,11,12,14,17],stan_vars_col:[5,8,14,17],stan_vars_dim:[5,17],stan_vars_typ:5,stan_vers:[8,14],stan_version_major:[8,14],stan_version_minor:[8,14],stan_version_patch:[8,14],stanc3:[0,11],stanc:[0,5,11,14,17],stanc_opt:[0,5,11,14,17],stancflag:11,stancsv:5,standard:[0,8,12,14],stanfil:0,stanfit:[0,5],stansummari:[0,1,3],stanvari:13,start:[0,2,8,9,10,11,12,13,14,15],state:[0,8,10],statement:[0,8],statist:[0,2,8,10,14,17],statu:[10,11,12],std:[8,11],stddev:[8,10,12,14],stderr:0,stdout:[0,8,15],stdout_fil:5,step:[0,8,15,17],step_siz:[0,5,8,14],stepsiz:[8,9,12,13,15],stepsize__:[8,14],stepsize_jitt:[8,15],still:1,stochast:13,storag:[0,2],store:[0,4],str:[0,5],stream:[0,8],strftime:0,strictli:0,string:[0,5,8],strip:15,structur:[0,14,17],studi:8,subdirectori:4,subprocess:[0,5],subsequ:0,substant:14,substanti:12,success:[0,10,14,17],suffici:0,suffix:[0,8,15],suggest:[8,12],sum:8,summar:[0,16],summari:[0,1,8,10,12,14],sundial:11,sundials_6:11,suppli:[5,17],support:[0,1,16,17],sure:0,synonym:0,syntax:[0,1,14],system:[0,4],t0:[8,15],t0__:11,t:[0,4,8,10,12,14],tabular:17,take:[0,4,8,10,15,17],taken:[8,12],tar:0,target:[0,8,12],tau:8,tbb:8,tbb_2020:11,techniqu:13,tell:11,templat:[0,3,11,15],temporari:[0,8,15,16,17],term:[8,17],term_buff:[8,15],termin:[8,11,15],test:[0,10,16,17],text:0,than:[0,8,12,16,17],thei:[1,11],them:2,theori:10,therefor:[4,5,8,12,17],theta:[0,8,9,10,11,13,14],thi:[0,2,4,5,6,8,9,10,11,12,13,14,15,16,17],thin:[0,5,8,15],thing:0,those:0,thread:[0,1,3],threads_per_chain:[0,8],three:9,threshold:[8,12,13],through:[0,15],throughout:16,thu:[0,8,16],time:[0,2,8,15,17],time_fmt:[0,5,13],timestamp:[0,8],tmp576tsk6g:8,tmp:[8,12,14,15],tmpvmhl6e01:[14,15],tmpyvkgpyxk:12,togeth:13,tol_grad:[0,5],tol_obj:[0,5],tol_param:[0,5],tol_rel_grad:[0,5],tol_rel_obj:[0,5,13],toler:0,too:0,took:[8,15],tool:[4,11,17],toolchain:[3,14],topic:[3,6,7],total:[0,8,14,15],toward:0,tqdm:[0,4,8,9,10,12,13],tqdmwarn:[9,10,12,13],traceback:13,track:0,trajectori:8,transcript:5,transform:[0,8,10,14],transit:[0,8,12,14,15],translat:[0,11,17],treat:8,treatment:8,tree:0,treedepth:[0,1,8,12,14],treedepth__:[8,14],trend:2,tri:1,trial:10,trivial:[10,14],troubl:[8,12],trust:17,tune:[0,14],tupl:[0,5],turn:8,tutori:10,two:[8,9,14,17],txt:[0,8,15],type:[0,5,10,11],typenam:11,typic:0,typo:1,u:8,ujson:10,unclear:12,unconstrain:[0,17],undefin:11,underli:4,underlyingli:[0,8,15],uniform:[0,10,11,12,14],union:[0,5],uniqu:0,unless:[0,8,11,13],unlik:10,unneed:17,unpack:0,unspecifi:0,unstabl:12,up:[0,1,5,8,12,15,17],updat:[0,1,9,10,12,13],upgrad:4,upon:[0,8],upper:[10,11,14],url:4,us:[0,1,2,3,4,5,6,7,8,9,10,13,15,16,17],usag:6,user:[0,2,3,4,5,8,10,11,12,13,14,15,16,17],user_head:[0,5,11],user_instal:[9,10,12,13],usual:[0,4,17],util:[0,3,4,5,13,17],v:[4,8,14],valid:[0,3,4,5,8,13],validate_cpp_opt:5,validate_stanc_opt:5,validate_user_head:5,valu:[0,1,5,8,10,12,14,17],valueerror:5,vari:4,variabl:[0,1,4,5,10,14,17],variant:8,variat:[0,3,5,6,7,14,17],variational_params_dict:[0,13],variational_params_np:[0,13],variational_params_pd:[0,13],variational_sampl:[0,13],variou:[1,4],vb:0,vb_fit:12,vb_var:12,vector:[0,5,8,10,12,14],verbos:0,veri:12,verifi:14,version:[0,1,4,5,8],vi:13,vi_fail:13,via:[0,3,4,12,17],view:3,virtual:4,visibl:8,visual:8,wa:[0,8,12],wai:[0,2,4],wait:0,want:4,warm:[8,15],warmup:[0,1,5,8,12,13,15],warn:[0,1,8,11,12,13],wasserstein:12,we:[1,4,8,9,10,11,12,14,15,17],weekli:2,well:[0,4,8,10,12,13,17],were:[0,1],what:[3,11],whatev:8,when:[0,1,2,4,5,8,10,12,13,15,17],whenev:17,where:[0,1,2,8,14],whether:[0,8],which:[0,1,3,4,5,8,9,10,12,13,14,15,16,17],whichev:4,whose:[0,14],widget:8,widgetsnbextens:8,window:[0,4,8,13,15],within:[0,4,17],without:[0,8,11,16],wno:11,work:[1,2,8,10,12,13,14,15],workflow:[3,6,14],world:[3,6,10,17],wors:16,worth:14,would:[1,8,10,13,15],wrap:[0,3,4,8,16],wrapper:2,write:0,write_stan_json:[3,17],writeabl:5,written:[0,1,4,8,15,16,17],x64:[9,10,12,13],x:[0,11,12,14],xarrai:[0,4,8,14,17],xcode:4,y:[0,5,8,10,11,12,14],y_rep:10,yearli:2,yet:11,you:[0,1,2,4,5,8,11,12,13,15,16],your:[1,4,8,12,15],yourself:[4,5],yyyymmddhhmm:0,yyyymmddhhmmss:[8,15],zhang:12},titles:["API Reference","What\u2019s New","Community","cmdstanpy \u2013 Python interface to CmdStan","Installation","Internal API Reference","User\u2019s Guide","CmdStanPy Examples","MCMC Sampling","Maximum Likelihood Estimation","Generating new quantities of interest.","Advanced Topic: Using External C++ Functions","Using Variational Estimates to Initialize the NUTS-HMC Sampler","Variational Inference in Stan","\u201cHello, World!\u201d","Controlling Outputs","Overview","CmdStanPy Workflow"],titleterms:{"0":1,"1":1,"2":1,"3":1,"4":1,"5":1,"6":1,"class":[0,5],"export":17,"function":[0,4,11],"new":[1,10],The:14,access:[8,14],add:10,advanc:11,algorithm:12,api:[0,5],assembl:17,bernoulli:[10,13],c:[4,11],chain:8,check:[8,10],cmdstan:[3,4,14,17],cmdstan_path:0,cmdstan_vers:0,cmdstanarg:5,cmdstangq:0,cmdstanmcmc:0,cmdstanml:0,cmdstanmodel:0,cmdstanpi:[1,3,4,7,17],cmdstanvb:0,commun:2,compil:17,compileropt:5,conda:4,control:15,cross:8,csv:15,data:[8,12,14,17],diagnos:14,diagnost:8,dii:4,directori:4,draw:8,engin:17,estim:[9,12],exampl:[7,10,13],extern:11,extract:8,file:[8,15],fit:[8,12,14],format:8,from:4,from_csv:0,gener:10,github:4,guid:6,hello:14,hmc:[8,12,14],infer:[12,13,17],inferencemetadata:5,initi:[12,17],input:[14,17],instal:4,install_cmdstan:[0,4],interest:10,interfac:3,intern:5,likelihood:9,locat:4,log:15,maximum:9,mcmc:8,meta:8,metadata:17,method:8,model:[8,12,13,14,17],multi:8,notebook:8,nut:[12,14],obtain:12,optimizearg:5,output:[8,15,17],overview:[8,16],packag:4,parallel:8,paramet:8,per:8,posterior:10,predict:10,prerequisit:8,process:8,program:8,progress:8,project:2,pypi:4,python:3,quantiti:10,refer:[0,5],repositori:4,requir:4,result:14,run:[12,17],runset:5,s:[1,6,12],sampl:8,sampler:[8,12,14],samplerarg:5,save:8,set_cmdstan_path:0,set_make_env:0,show_vers:0,softwar:2,stan:[8,10,12,13,14,17],stansummari:14,structur:8,summar:8,tabular:8,templat:2,thread:8,toolchain:4,topic:11,tune:8,us:[11,12,14],user:6,util:14,valid:17,variabl:8,variat:[12,13],variationalarg:5,via:8,view:17,what:1,within:8,workflow:17,world:14,write_stan_json:0}}) \ No newline at end of file diff --git a/docs/users-guide.html b/docs/users-guide.html index ab07faff..23aec2b0 100644 --- a/docs/users-guide.html +++ b/docs/users-guide.html @@ -6,7 +6,7 @@ - User’s Guide — CmdStanPy 1.0.6 documentation + User’s Guide — CmdStanPy 1.0.7 documentation @@ -59,7 +59,7 @@ diff --git a/docs/users-guide/examples.html b/docs/users-guide/examples.html index 77ae407c..5e23f081 100644 --- a/docs/users-guide/examples.html +++ b/docs/users-guide/examples.html @@ -6,7 +6,7 @@ - CmdStanPy Examples — CmdStanPy 1.0.6 documentation + CmdStanPy Examples — CmdStanPy 1.0.7 documentation @@ -59,7 +59,7 @@ diff --git a/docs/users-guide/examples/MCMC Sampling.html b/docs/users-guide/examples/MCMC Sampling.html index 08b0d412..0e567773 100644 --- a/docs/users-guide/examples/MCMC Sampling.html +++ b/docs/users-guide/examples/MCMC Sampling.html @@ -6,7 +6,7 @@ - MCMC Sampling — CmdStanPy 1.0.6 documentation + MCMC Sampling — CmdStanPy 1.0.7 documentation @@ -59,7 +59,7 @@ diff --git a/docs/users-guide/examples/Maximum Likelihood Estimation.html b/docs/users-guide/examples/Maximum Likelihood Estimation.html index cffe8e55..d1a687af 100644 --- a/docs/users-guide/examples/Maximum Likelihood Estimation.html +++ b/docs/users-guide/examples/Maximum Likelihood Estimation.html @@ -6,7 +6,7 @@ - Maximum Likelihood Estimation — CmdStanPy 1.0.6 documentation + Maximum Likelihood Estimation — CmdStanPy 1.0.7 documentation @@ -59,7 +59,7 @@ @@ -551,8 +551,8 @@

      Maximum Likelihood Estimation
       /opt/hostedtoolcache/Python/3.9.13/x64/lib/python3.9/site-packages/tqdm/auto.py:22: TqdmWarning: IProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.readthedocs.io/en/stable/user_install.html
         from .autonotebook import tqdm as notebook_tqdm
      -18:58:31 - cmdstanpy - INFO - Chain [1] start processing
      -18:58:31 - cmdstanpy - INFO - Chain [1] done processing
      +13:29:25 - cmdstanpy - INFO - Chain [1] start processing
      +13:29:25 - cmdstanpy - INFO - Chain [1] done processing
       

  • @@ -561,7 +561,7 @@

    Maximum Likelihood Estimation
     ('lp__', 'theta')
    -OrderedDict([('lp__', -5.00402), ('theta', 0.2)])
    +OrderedDict([('lp__', -5.00402), ('theta', 0.200006)])
     

    @@ -595,7 +595,7 @@

    Maximum Likelihood Estimation\n", " 0\n", " -5.00402\n", - " 0.2\n", + " 0.200006\n", " \n", " \n", "\n", "

    " ], "text/plain": [ - " lp__ theta\n", - "0 -5.00402 0.2" + " lp__ theta\n", + "0 -5.00402 0.200006" ] }, "execution_count": 1, diff --git a/docs/users-guide/examples/Run Generated Quantities.html b/docs/users-guide/examples/Run Generated Quantities.html index cd426d13..d046d580 100644 --- a/docs/users-guide/examples/Run Generated Quantities.html +++ b/docs/users-guide/examples/Run Generated Quantities.html @@ -6,7 +6,7 @@ - Generating new quantities of interest. — CmdStanPy 1.0.6 documentation + Generating new quantities of interest. — CmdStanPy 1.0.7 documentation @@ -59,7 +59,7 @@ @@ -625,7 +625,7 @@

    Example: add posterior predictive checks to
    -18:58:33 - cmdstanpy - INFO - CmdStan start processing
    +13:29:28 - cmdstanpy - INFO - CmdStan start processing
     chain 1 |          | 00:00 Status
     chain 2 |          | 00:00 Status
     
    @@ -652,7 +652,7 @@ 

    Example: add posterior predictive checks to
     
    -18:58:33 - cmdstanpy - INFO - CmdStan done processing.
    +13:29:28 - cmdstanpy - INFO - CmdStan done processing.
     

    @@ -709,27 +709,27 @@

    Example: add posterior predictive checks to
    -18:58:33 - cmdstanpy - INFO - compiling stan file /home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/bernoulli_ppc.stan to exe file /home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/bernoulli_ppc
    -18:58:41 - cmdstanpy - INFO - compiled model executable: /home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/bernoulli_ppc
    +13:29:28 - cmdstanpy - INFO - compiling stan file /home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/bernoulli_ppc.stan to exe file /home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/bernoulli_ppc
    +13:29:37 - cmdstanpy - INFO - compiled model executable: /home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/bernoulli_ppc
     

    @@ -795,14 +795,14 @@

    Example: add posterior predictive checks to
    -18:58:41 - cmdstanpy - INFO - Chain [1] start processing
    -18:58:41 - cmdstanpy - INFO - Chain [1] done processing
    -18:58:41 - cmdstanpy - INFO - Chain [2] start processing
    -18:58:41 - cmdstanpy - INFO - Chain [2] done processing
    -18:58:41 - cmdstanpy - INFO - Chain [3] start processing
    -18:58:41 - cmdstanpy - INFO - Chain [3] done processing
    -18:58:41 - cmdstanpy - INFO - Chain [4] start processing
    -18:58:41 - cmdstanpy - INFO - Chain [4] done processing
    +13:29:38 - cmdstanpy - INFO - Chain [1] start processing
    +13:29:38 - cmdstanpy - INFO - Chain [1] done processing
    +13:29:38 - cmdstanpy - INFO - Chain [2] start processing
    +13:29:38 - cmdstanpy - INFO - Chain [2] done processing
    +13:29:38 - cmdstanpy - INFO - Chain [3] start processing
    +13:29:38 - cmdstanpy - INFO - Chain [3] done processing
    +13:29:38 - cmdstanpy - INFO - Chain [4] start processing
    +13:29:38 - cmdstanpy - INFO - Chain [4] done processing
     

    The generate_quantities method returns a CmdStanGQ object which contains the values for all variables in the generated quantitites block of the program bernoulli_ppc.stan. Unlike the output from the sample method, it doesn’t contain any information on the joint log probability density, sampler state, or parameters or transformed parameter values.

    @@ -823,18 +823,18 @@

    Example: add posterior predictive checks to
     (1000, 4, 10) ('y_rep[1]', 'y_rep[2]', 'y_rep[3]', 'y_rep[4]', 'y_rep[5]', 'y_rep[6]', 'y_rep[7]', 'y_rep[8]', 'y_rep[9]', 'y_rep[10]')
    -[[0. 0. 0. 0. 0. 0. 0. 1. 0. 0.]
    - [0. 0. 0. 0. 0. 0. 0. 1. 0. 0.]
    - [0. 0. 0. 1. 0. 1. 0. 1. 0. 0.]
    - [0. 0. 0. 0. 0. 0. 0. 1. 0. 0.]]
    +[[1. 1. 1. 0. 1. 0. 0. 0. 0. 0.]
    + [1. 1. 1. 0. 0. 0. 0. 0. 0. 0.]
    + [1. 1. 1. 0. 0. 0. 0. 0. 0. 0.]
    + [1. 1. 1. 0. 0. 0. 0. 0. 0. 0.]]
    +[[1. 1. 1. 0. 0. 0. 1. 0. 1. 1.]
    + [1. 0. 1. 0. 0. 0. 1. 0. 0. 0.]
    + [1. 0. 1. 0. 0. 0. 0. 0. 0. 0.]
    + [1. 1. 1. 0. 0. 0. 1. 0. 1. 1.]]
     [[0. 0. 0. 0. 0. 0. 0. 0. 0. 0.]
    - [0. 0. 0. 0. 0. 0. 1. 0. 0. 0.]
    - [0. 1. 0. 1. 0. 0. 1. 0. 0. 0.]
    - [0. 0. 0. 0. 0. 0. 1. 0. 0. 0.]]
    -[[0. 1. 0. 1. 0. 0. 0. 0. 1. 0.]
    - [0. 1. 0. 1. 0. 0. 0. 0. 1. 0.]
    - [0. 1. 0. 1. 0. 0. 0. 0. 1. 0.]
    - [0. 1. 0. 1. 0. 0. 0. 0. 1. 0.]]
    + [0. 0. 0. 0. 0. 0. 0. 0. 0. 0.]
    + [0. 0. 0. 1. 0. 0. 0. 0. 1. 0.]
    + [0. 0. 0. 1. 0. 0. 0. 0. 1. 0.]]
     

    We can also use draws_pd(inc_sample=True) to get a pandas DataFrame which combines the input drawset with the generated quantities.

    @@ -903,65 +903,65 @@

    Example: add posterior predictive checks to \n", " \n", " lp__\n", - " -7.272190\n", - " 0.020193\n", - " 0.759561\n", - " -8.739310\n", - " -6.98950\n", - " -6.750100\n", - " 1414.94\n", - " 34510.6\n", - " 1.00527\n", + " -7.281860\n", + " 0.020178\n", + " 0.750850\n", + " -8.966000\n", + " -6.980410\n", + " -6.749890\n", + " 1384.73\n", + " 32203.1\n", + " 1.00237\n", " \n", " \n", " theta\n", - " 0.253475\n", - " 0.003270\n", - " 0.120090\n", - " 0.081312\n", - " 0.23948\n", - " 0.475314\n", - " 1349.00\n", - " 32902.4\n", - " 1.00439\n", + " 0.251858\n", + " 0.003258\n", + " 0.121122\n", + " 0.074654\n", + " 0.238443\n", + " 0.473461\n", + " 1381.77\n", + " 32134.2\n", + " 1.00304\n", " \n", " \n", "\n", "" ], "text/plain": [ - " Mean MCSE StdDev 5% 50% 95% N_Eff \\\n", - "lp__ -7.272190 0.020193 0.759561 -8.739310 -6.98950 -6.750100 1414.94 \n", - "theta 0.253475 0.003270 0.120090 0.081312 0.23948 0.475314 1349.00 \n", + " Mean MCSE StdDev 5% 50% 95% N_Eff \\\n", + "lp__ -7.281860 0.020178 0.750850 -8.966000 -6.980410 -6.749890 1384.73 \n", + "theta 0.251858 0.003258 0.121122 0.074654 0.238443 0.473461 1381.77 \n", "\n", " N_Eff/s R_hat \n", - "lp__ 34510.6 1.00527 \n", - "theta 32902.4 1.00439 " + "lp__ 32203.1 1.00237 \n", + "theta 32134.2 1.00304 " ] }, "execution_count": 4, @@ -426,10 +426,10 @@ "execution_count": 5, "metadata": { "execution": { - "iopub.execute_input": "2022-08-23T18:58:33.420954Z", - "iopub.status.busy": "2022-08-23T18:58:33.420715Z", - "iopub.status.idle": "2022-08-23T18:58:41.344977Z", - "shell.execute_reply": "2022-08-23T18:58:41.343853Z" + "iopub.execute_input": "2022-08-25T13:29:28.322277Z", + "iopub.status.busy": "2022-08-25T13:29:28.321772Z", + "iopub.status.idle": "2022-08-25T13:29:37.996776Z", + "shell.execute_reply": "2022-08-25T13:29:37.995958Z" } }, "outputs": [ @@ -437,14 +437,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "18:58:33 - cmdstanpy - INFO - compiling stan file /home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/bernoulli_ppc.stan to exe file /home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/bernoulli_ppc\n" + "13:29:28 - cmdstanpy - INFO - compiling stan file /home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/bernoulli_ppc.stan to exe file /home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/bernoulli_ppc\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ - "18:58:41 - cmdstanpy - INFO - compiled model executable: /home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/bernoulli_ppc\n" + "13:29:37 - cmdstanpy - INFO - compiled model executable: /home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/bernoulli_ppc\n" ] }, { @@ -494,10 +494,10 @@ "execution_count": 6, "metadata": { "execution": { - "iopub.execute_input": "2022-08-23T18:58:41.348938Z", - "iopub.status.busy": "2022-08-23T18:58:41.348305Z", - "iopub.status.idle": "2022-08-23T18:58:41.447133Z", - "shell.execute_reply": "2022-08-23T18:58:41.446206Z" + "iopub.execute_input": "2022-08-25T13:29:38.001015Z", + "iopub.status.busy": "2022-08-25T13:29:38.000298Z", + "iopub.status.idle": "2022-08-25T13:29:38.114089Z", + "shell.execute_reply": "2022-08-25T13:29:38.113297Z" } }, "outputs": [ @@ -505,56 +505,56 @@ "name": "stderr", "output_type": "stream", "text": [ - "18:58:41 - cmdstanpy - INFO - Chain [1] start processing\n" + "13:29:38 - cmdstanpy - INFO - Chain [1] start processing\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ - "18:58:41 - cmdstanpy - INFO - Chain [1] done processing\n" + "13:29:38 - cmdstanpy - INFO - Chain [1] done processing\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ - "18:58:41 - cmdstanpy - INFO - Chain [2] start processing\n" + "13:29:38 - cmdstanpy - INFO - Chain [2] start processing\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ - "18:58:41 - cmdstanpy - INFO - Chain [2] done processing\n" + "13:29:38 - cmdstanpy - INFO - Chain [2] done processing\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ - "18:58:41 - cmdstanpy - INFO - Chain [3] start processing\n" + "13:29:38 - cmdstanpy - INFO - Chain [3] start processing\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ - "18:58:41 - cmdstanpy - INFO - Chain [3] done processing\n" + "13:29:38 - cmdstanpy - INFO - Chain [3] done processing\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ - "18:58:41 - cmdstanpy - INFO - Chain [4] start processing\n" + "13:29:38 - cmdstanpy - INFO - Chain [4] start processing\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ - "18:58:41 - cmdstanpy - INFO - Chain [4] done processing\n" + "13:29:38 - cmdstanpy - INFO - Chain [4] done processing\n" ] } ], @@ -576,10 +576,10 @@ "execution_count": 7, "metadata": { "execution": { - "iopub.execute_input": "2022-08-23T18:58:41.450802Z", - "iopub.status.busy": "2022-08-23T18:58:41.450404Z", - "iopub.status.idle": "2022-08-23T18:58:41.479041Z", - "shell.execute_reply": "2022-08-23T18:58:41.477816Z" + "iopub.execute_input": "2022-08-25T13:29:38.118453Z", + "iopub.status.busy": "2022-08-25T13:29:38.117860Z", + "iopub.status.idle": "2022-08-25T13:29:38.144565Z", + "shell.execute_reply": "2022-08-25T13:29:38.143726Z" } }, "outputs": [ @@ -588,18 +588,18 @@ "output_type": "stream", "text": [ "(1000, 4, 10) ('y_rep[1]', 'y_rep[2]', 'y_rep[3]', 'y_rep[4]', 'y_rep[5]', 'y_rep[6]', 'y_rep[7]', 'y_rep[8]', 'y_rep[9]', 'y_rep[10]')\n", - "[[0. 0. 0. 0. 0. 0. 0. 1. 0. 0.]\n", - " [0. 0. 0. 0. 0. 0. 0. 1. 0. 0.]\n", - " [0. 0. 0. 1. 0. 1. 0. 1. 0. 0.]\n", - " [0. 0. 0. 0. 0. 0. 0. 1. 0. 0.]]\n", + "[[1. 1. 1. 0. 1. 0. 0. 0. 0. 0.]\n", + " [1. 1. 1. 0. 0. 0. 0. 0. 0. 0.]\n", + " [1. 1. 1. 0. 0. 0. 0. 0. 0. 0.]\n", + " [1. 1. 1. 0. 0. 0. 0. 0. 0. 0.]]\n", + "[[1. 1. 1. 0. 0. 0. 1. 0. 1. 1.]\n", + " [1. 0. 1. 0. 0. 0. 1. 0. 0. 0.]\n", + " [1. 0. 1. 0. 0. 0. 0. 0. 0. 0.]\n", + " [1. 1. 1. 0. 0. 0. 1. 0. 1. 1.]]\n", "[[0. 0. 0. 0. 0. 0. 0. 0. 0. 0.]\n", - " [0. 0. 0. 0. 0. 0. 1. 0. 0. 0.]\n", - " [0. 1. 0. 1. 0. 0. 1. 0. 0. 0.]\n", - " [0. 0. 0. 0. 0. 0. 1. 0. 0. 0.]]\n", - "[[0. 1. 0. 1. 0. 0. 0. 0. 1. 0.]\n", - " [0. 1. 0. 1. 0. 0. 0. 0. 1. 0.]\n", - " [0. 1. 0. 1. 0. 0. 0. 0. 1. 0.]\n", - " [0. 1. 0. 1. 0. 0. 0. 0. 1. 0.]]\n" + " [0. 0. 0. 0. 0. 0. 0. 0. 0. 0.]\n", + " [0. 0. 0. 1. 0. 0. 0. 0. 1. 0.]\n", + " [0. 0. 0. 1. 0. 0. 0. 0. 1. 0.]]\n" ] } ], @@ -621,10 +621,10 @@ "execution_count": 8, "metadata": { "execution": { - "iopub.execute_input": "2022-08-23T18:58:41.482546Z", - "iopub.status.busy": "2022-08-23T18:58:41.482102Z", - "iopub.status.idle": "2022-08-23T18:58:41.507144Z", - "shell.execute_reply": "2022-08-23T18:58:41.505767Z" + "iopub.execute_input": "2022-08-25T13:29:38.148105Z", + "iopub.status.busy": "2022-08-25T13:29:38.147688Z", + "iopub.status.idle": "2022-08-25T13:29:38.170916Z", + "shell.execute_reply": "2022-08-25T13:29:38.170035Z" } }, "outputs": [ @@ -679,65 +679,65 @@ " \n", " \n", " 0\n", - " -7.29072\n", - " 0.913481\n", - " 1.18093\n", + " -9.13552\n", + " 0.940254\n", + " 0.836793\n", " 1.0\n", " 1.0\n", " 0.0\n", - " 7.29639\n", - " 0.136884\n", - " 0.0\n", - " 0.0\n", + " 9.68264\n", + " 0.560479\n", + " 1.0\n", + " 1.0\n", + " 1.0\n", " 0.0\n", + " 1.0\n", " 0.0\n", " 0.0\n", " 0.0\n", " 0.0\n", - " 1.0\n", - " 0.0\n", " 0.0\n", " \n", " \n", " 1\n", - " -7.22814\n", + " -8.78559\n", " 1.000000\n", - " 1.18093\n", + " 0.836793\n", " 1.0\n", " 1.0\n", " 0.0\n", - " 7.38664\n", - " 0.142567\n", - " 0.0\n", - " 0.0\n", - " 0.0\n", - " 0.0\n", - " 0.0\n", - " 0.0\n", + " 9.52300\n", + " 0.536282\n", + " 1.0\n", + " 1.0\n", + " 1.0\n", " 0.0\n", " 0.0\n", " 0.0\n", + " 1.0\n", " 0.0\n", + " 1.0\n", + " 1.0\n", " \n", " \n", " 2\n", - " -6.96068\n", + " -8.59408\n", " 1.000000\n", - " 1.18093\n", + " 0.836793\n", " 2.0\n", - " 3.0\n", + " 7.0\n", + " 0.0\n", + " 8.69180\n", + " 0.071122\n", + " 0.0\n", + " 0.0\n", " 0.0\n", - " 7.18040\n", - " 0.174933\n", " 0.0\n", - " 1.0\n", " 0.0\n", - " 1.0\n", " 0.0\n", " 0.0\n", " 0.0\n", " 0.0\n", - " 1.0\n", " 0.0\n", " \n", " \n", @@ -745,15 +745,15 @@ "" ], "text/plain": [ - " 0 1 2 3 4 5 6 7 8 9 \\\n", - "0 -7.29072 0.913481 1.18093 1.0 1.0 0.0 7.29639 0.136884 0.0 0.0 \n", - "1 -7.22814 1.000000 1.18093 1.0 1.0 0.0 7.38664 0.142567 0.0 0.0 \n", - "2 -6.96068 1.000000 1.18093 2.0 3.0 0.0 7.18040 0.174933 0.0 1.0 \n", + " 0 1 2 3 4 5 6 7 8 9 \\\n", + "0 -9.13552 0.940254 0.836793 1.0 1.0 0.0 9.68264 0.560479 1.0 1.0 \n", + "1 -8.78559 1.000000 0.836793 1.0 1.0 0.0 9.52300 0.536282 1.0 1.0 \n", + "2 -8.59408 1.000000 0.836793 2.0 7.0 0.0 8.69180 0.071122 0.0 0.0 \n", "\n", " 10 11 12 13 14 15 16 17 \n", - "0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 0.0 \n", - "1 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 \n", - "2 0.0 1.0 0.0 0.0 0.0 0.0 1.0 0.0 " + "0 1.0 0.0 1.0 0.0 0.0 0.0 0.0 0.0 \n", + "1 1.0 0.0 0.0 0.0 1.0 0.0 1.0 1.0 \n", + "2 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 " ] }, "execution_count": 8, diff --git a/docs/users-guide/examples/Using External C++.html b/docs/users-guide/examples/Using External C++.html index c81f41b9..6ec6697e 100644 --- a/docs/users-guide/examples/Using External C++.html +++ b/docs/users-guide/examples/Using External C++.html @@ -6,7 +6,7 @@ - Advanced Topic: Using External C++ Functions — CmdStanPy 1.0.6 documentation + Advanced Topic: Using External C++ Functions — CmdStanPy 1.0.7 documentation @@ -59,7 +59,7 @@ diff --git a/docs/users-guide/examples/VI as Sampler Inits.html b/docs/users-guide/examples/VI as Sampler Inits.html index 14cae937..2a76626f 100644 --- a/docs/users-guide/examples/VI as Sampler Inits.html +++ b/docs/users-guide/examples/VI as Sampler Inits.html @@ -6,7 +6,7 @@ - Using Variational Estimates to Initialize the NUTS-HMC Sampler — CmdStanPy 1.0.6 documentation + Using Variational Estimates to Initialize the NUTS-HMC Sampler — CmdStanPy 1.0.7 documentation @@ -59,7 +59,7 @@ @@ -556,8 +556,8 @@

    Model and data
     /opt/hostedtoolcache/Python/3.9.13/x64/lib/python3.9/site-packages/tqdm/auto.py:22: TqdmWarning: IProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.readthedocs.io/en/stable/user_install.html
       from .autonotebook import tqdm as notebook_tqdm
    -18:58:44 - cmdstanpy - INFO - compiling stan file /home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/blr.stan to exe file /home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/blr
    -18:58:54 - cmdstanpy - INFO - compiled model executable: /home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/blr
    +13:29:41 - cmdstanpy - INFO - compiling stan file /home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/blr.stan to exe file /home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/blr
    +13:29:52 - cmdstanpy - INFO - compiled model executable: /home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/blr
     
    @@ -647,7 +647,7 @@

    Run Stan’s variational inference algorithm, obtain fitted estimates
    -18:58:54 - cmdstanpy - INFO - CmdStan start processing
    +13:29:52 - cmdstanpy - INFO - CmdStan start processing
     chain 1 |          | 00:00 Status
     chain 2 |          | 00:00 Status
     
    @@ -685,8 +685,8 @@ 

    Run Stan’s variational inference algorithm, obtain fitted estimates
     
    -18:58:55 - cmdstanpy - INFO - CmdStan done processing.
    -18:58:55 - cmdstanpy - WARNING - Non-fatal error during sampling:
    +13:29:53 - cmdstanpy - INFO - CmdStan done processing.
    +13:29:53 - cmdstanpy - WARNING - Non-fatal error during sampling:
     Exception: normal_lpdf: Scale parameter is 0, but must be positive! (in '/home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/blr.stan', line 16, column 2 to column 45)
     Exception: normal_lpdf: Scale parameter is 0, but must be positive! (in '/home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/blr.stan', line 16, column 2 to column 45)
     Exception: normal_lpdf: Scale parameter is 0, but must be positive! (in '/home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/blr.stan', line 16, column 2 to column 45)
    @@ -754,7 +754,7 @@ 

    Run Stan’s variational inference algorithm, obtain fitted estimates-156.532000 -154.64600 938.42000 - 2085.380000 + 2035.620000 1.001480 @@ -766,7 +766,7 @@

    Run Stan’s variational inference algorithm, obtain fitted estimates0.999461 1.00107 4863.49000 - 10807.800000 + 10549.900000 1.000320 @@ -778,7 +778,7 @@

    Run Stan’s variational inference algorithm, obtain fitted estimates1.000210 1.00210 4344.92000 - 9655.380000 + 9424.990000 0.999725 @@ -790,7 +790,7 @@

    Run Stan’s variational inference algorithm, obtain fitted estimates1.000430 1.00200 4385.54000 - 9745.650000 + 9513.100000 0.999669 @@ -802,7 +802,7 @@

    Run Stan’s variational inference algorithm, obtain fitted estimates1.001150 1.00292 4664.71000 - 10366.000000 + 10118.700000 0.999536 @@ -814,7 +814,7 @@

    Run Stan’s variational inference algorithm, obtain fitted estimates1.001540 1.00321 4786.98000 - 10637.700000 + 10383.900000 0.999197 @@ -826,7 +826,7 @@

    Run Stan’s variational inference algorithm, obtain fitted estimates0.961783 1.09259 256.47117 - 569.935933 + 556.336594 1.011019 @@ -847,7 +847,7 @@

    Run Stan’s variational inference algorithm, obtain fitted estimates
    @@ -913,20 +913,27 @@

    Run Stan’s variational inference algorithm, obtain fitted estimates
     
    -18:58:55 - cmdstanpy - INFO - CmdStan done processing.
    -18:58:55 - cmdstanpy - WARNING - Some chains may have failed to converge.
    -        Chain 1 had 161 divergent transitions (16.1%)
    -        Chain 3 had 147 divergent transitions (14.7%)
    -        Chain 4 had 244 divergent transitions (24.4%)
    -        Use function "diagnose()" to see further information.
    +13:29:53 - cmdstanpy - INFO - CmdStan done processing.
     

    -
    +
     
    +
    +
    +
    +
    +
    +
    +
    +13:29:53 - cmdstanpy - WARNING - Some chains may have failed to converge.
    +        Chain 1 had 161 divergent transitions (16.1%)
    +        Chain 3 had 147 divergent transitions (14.7%)
    +        Chain 4 had 244 divergent transitions (24.4%)
    +        Use function "diagnose()" to see further information.
     
    @@ -981,7 +988,7 @@

    Run Stan’s variational inference algorithm, obtain fitted estimates-165.541000 -154.33900 2.03097 - 13.10310 + 12.08910 11.37150 @@ -993,7 +1000,7 @@

    Run Stan’s variational inference algorithm, obtain fitted estimates0.999494 1.00252 232.18100 - 1497.94000 + 1382.03000 1.01286 @@ -1005,7 +1012,7 @@

    Run Stan’s variational inference algorithm, obtain fitted estimates1.000410 1.00459 110.88200 - 715.37000 + 660.01400 1.04571 @@ -1017,7 +1024,7 @@

    Run Stan’s variational inference algorithm, obtain fitted estimates1.000480 1.00442 62.47110 - 403.03900 + 371.85200 1.04607 @@ -1029,7 +1036,7 @@

    Run Stan’s variational inference algorithm, obtain fitted estimates1.001690 1.00512 103.34500 - 666.74000 + 615.14700 1.09049 @@ -1041,7 +1048,7 @@

    Run Stan’s variational inference algorithm, obtain fitted estimates1.001290 1.00443 180.70500 - 1165.84000 + 1075.63000 1.03165 @@ -1053,7 +1060,7 @@

    Run Stan’s variational inference algorithm, obtain fitted estimates2.708830 3.17346 2.03514 - 13.12994 + 12.11393 10.50420 @@ -1073,7 +1080,7 @@

    Run Stan’s variational inference algorithm, obtain fitted estimates
    -Processing csv files: /tmp/tmpkher3kfz/blrux5anwjl/blr-20220823185855_1.csv, /tmp/tmpkher3kfz/blrux5anwjl/blr-20220823185855_2.csv, /tmp/tmpkher3kfz/blrux5anwjl/blr-20220823185855_3.csv, /tmp/tmpkher3kfz/blrux5anwjl/blr-20220823185855_4.csv
    +Processing csv files: /tmp/tmpyvkgpyxk/blr2u04w073/blr-20220825132953_1.csv, /tmp/tmpyvkgpyxk/blr2u04w073/blr-20220825132953_2.csv, /tmp/tmpyvkgpyxk/blr2u04w073/blr-20220825132953_3.csv, /tmp/tmpyvkgpyxk/blr2u04w073/blr-20220825132953_4.csv
     
     Checking sampler transitions treedepth.
     Treedepth satisfactory for all transitions.
    diff --git a/docs/users-guide/examples/VI as Sampler Inits.ipynb b/docs/users-guide/examples/VI as Sampler Inits.ipynb
    index 643dbc42..8e85b05a 100644
    --- a/docs/users-guide/examples/VI as Sampler Inits.ipynb	
    +++ b/docs/users-guide/examples/VI as Sampler Inits.ipynb	
    @@ -26,10 +26,10 @@
        "execution_count": 1,
        "metadata": {
         "execution": {
    -     "iopub.execute_input": "2022-08-23T18:58:44.319367Z",
    -     "iopub.status.busy": "2022-08-23T18:58:44.319061Z",
    -     "iopub.status.idle": "2022-08-23T18:58:54.682098Z",
    -     "shell.execute_reply": "2022-08-23T18:58:54.681286Z"
    +     "iopub.execute_input": "2022-08-25T13:29:41.587631Z",
    +     "iopub.status.busy": "2022-08-25T13:29:41.587309Z",
    +     "iopub.status.idle": "2022-08-25T13:29:52.713679Z",
    +     "shell.execute_reply": "2022-08-25T13:29:52.712928Z"
         }
        },
        "outputs": [
    @@ -45,14 +45,14 @@
          "name": "stderr",
          "output_type": "stream",
          "text": [
    -      "18:58:44 - cmdstanpy - INFO - compiling stan file /home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/blr.stan to exe file /home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/blr\n"
    +      "13:29:41 - cmdstanpy - INFO - compiling stan file /home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/blr.stan to exe file /home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/blr\n"
          ]
         },
         {
          "name": "stderr",
          "output_type": "stream",
          "text": [
    -      "18:58:54 - cmdstanpy - INFO - compiled model executable: /home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/blr\n"
    +      "13:29:52 - cmdstanpy - INFO - compiled model executable: /home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/blr\n"
          ]
         },
         {
    @@ -108,10 +108,10 @@
        "execution_count": 2,
        "metadata": {
         "execution": {
    -     "iopub.execute_input": "2022-08-23T18:58:54.685938Z",
    -     "iopub.status.busy": "2022-08-23T18:58:54.685503Z",
    -     "iopub.status.idle": "2022-08-23T18:58:54.785390Z",
    -     "shell.execute_reply": "2022-08-23T18:58:54.784678Z"
    +     "iopub.execute_input": "2022-08-25T13:29:52.718078Z",
    +     "iopub.status.busy": "2022-08-25T13:29:52.717630Z",
    +     "iopub.status.idle": "2022-08-25T13:29:52.820872Z",
    +     "shell.execute_reply": "2022-08-25T13:29:52.820138Z"
         }
        },
        "outputs": [
    @@ -119,21 +119,21 @@
          "name": "stderr",
          "output_type": "stream",
          "text": [
    -      "18:58:54 - cmdstanpy - INFO - Chain [1] start processing\n"
    +      "13:29:52 - cmdstanpy - INFO - Chain [1] start processing\n"
          ]
         },
         {
          "name": "stderr",
          "output_type": "stream",
          "text": [
    -      "18:58:54 - cmdstanpy - INFO - Chain [1] done processing\n"
    +      "13:29:52 - cmdstanpy - INFO - Chain [1] done processing\n"
          ]
         },
         {
          "name": "stderr",
          "output_type": "stream",
          "text": [
    -      "18:58:54 - cmdstanpy - WARNING - The algorithm may not have converged.\n",
    +      "13:29:52 - cmdstanpy - WARNING - The algorithm may not have converged.\n",
           "Proceeding because require_converged is set to False\n"
          ]
         }
    @@ -157,10 +157,10 @@
        "execution_count": 3,
        "metadata": {
         "execution": {
    -     "iopub.execute_input": "2022-08-23T18:58:54.788944Z",
    -     "iopub.status.busy": "2022-08-23T18:58:54.788459Z",
    -     "iopub.status.idle": "2022-08-23T18:58:54.794200Z",
    -     "shell.execute_reply": "2022-08-23T18:58:54.793547Z"
    +     "iopub.execute_input": "2022-08-25T13:29:52.824561Z",
    +     "iopub.status.busy": "2022-08-25T13:29:52.824061Z",
    +     "iopub.status.idle": "2022-08-25T13:29:52.830029Z",
    +     "shell.execute_reply": "2022-08-25T13:29:52.829337Z"
         }
        },
        "outputs": [
    @@ -192,10 +192,10 @@
        "execution_count": 4,
        "metadata": {
         "execution": {
    -     "iopub.execute_input": "2022-08-23T18:58:54.797236Z",
    -     "iopub.status.busy": "2022-08-23T18:58:54.796816Z",
    -     "iopub.status.idle": "2022-08-23T18:58:55.133334Z",
    -     "shell.execute_reply": "2022-08-23T18:58:55.132579Z"
    +     "iopub.execute_input": "2022-08-25T13:29:52.833146Z",
    +     "iopub.status.busy": "2022-08-25T13:29:52.832908Z",
    +     "iopub.status.idle": "2022-08-25T13:29:53.182640Z",
    +     "shell.execute_reply": "2022-08-25T13:29:53.181426Z"
         }
        },
        "outputs": [
    @@ -203,7 +203,7 @@
          "name": "stderr",
          "output_type": "stream",
          "text": [
    -      "18:58:54 - cmdstanpy - INFO - CmdStan start processing\n"
    +      "13:29:52 - cmdstanpy - INFO - CmdStan start processing\n"
          ]
         },
         {
    @@ -295,7 +295,7 @@
          "output_type": "stream",
          "text": [
           "\r",
    -      "chain 2 |\u001b[34m████████▎ \u001b[0m| 00:00 Iteration:  775 / 1075 [ 72%]  (Sampling)"
    +      "chain 2 |\u001b[34m███████▌  \u001b[0m| 00:00 Iteration:  675 / 1075 [ 62%]  (Sampling)"
          ]
         },
         {
    @@ -397,7 +397,7 @@
          "output_type": "stream",
          "text": [
           "\r",
    -      "chain 4 |\u001b[34m████████▎ \u001b[0m| 00:00 Iteration:  775 / 1075 [ 72%]  (Sampling)"
    +      "chain 4 |\u001b[34m█████████▏\u001b[0m| 00:00 Iteration:  875 / 1075 [ 81%]  (Sampling)"
          ]
         },
         {
    @@ -475,14 +475,14 @@
          "output_type": "stream",
          "text": [
           "\n",
    -      "18:58:55 - cmdstanpy - INFO - CmdStan done processing.\n"
    +      "13:29:53 - cmdstanpy - INFO - CmdStan done processing.\n"
          ]
         },
         {
          "name": "stderr",
          "output_type": "stream",
          "text": [
    -      "18:58:55 - cmdstanpy - WARNING - Non-fatal error during sampling:\n",
    +      "13:29:53 - cmdstanpy - WARNING - Non-fatal error during sampling:\n",
           "Exception: normal_lpdf: Scale parameter is 0, but must be positive! (in '/home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/blr.stan', line 16, column 2 to column 45)\n",
           "Exception: normal_lpdf: Scale parameter is 0, but must be positive! (in '/home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/blr.stan', line 16, column 2 to column 45)\n",
           "Exception: normal_lpdf: Scale parameter is 0, but must be positive! (in '/home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/blr.stan', line 16, column 2 to column 45)\n",
    @@ -510,10 +510,10 @@
        "execution_count": 5,
        "metadata": {
         "execution": {
    -     "iopub.execute_input": "2022-08-23T18:58:55.136660Z",
    -     "iopub.status.busy": "2022-08-23T18:58:55.136253Z",
    -     "iopub.status.idle": "2022-08-23T18:58:55.229132Z",
    -     "shell.execute_reply": "2022-08-23T18:58:55.228368Z"
    +     "iopub.execute_input": "2022-08-25T13:29:53.186592Z",
    +     "iopub.status.busy": "2022-08-25T13:29:53.186110Z",
    +     "iopub.status.idle": "2022-08-25T13:29:53.283248Z",
    +     "shell.execute_reply": "2022-08-25T13:29:53.282370Z"
         }
        },
        "outputs": [
    @@ -559,7 +559,7 @@
            "      -156.532000\n",
            "      -154.64600\n",
            "      938.42000\n",
    -       "      2085.380000\n",
    +       "      2035.620000\n",
            "      1.001480\n",
            "    \n",
            "    \n",
    @@ -571,7 +571,7 @@
            "      0.999461\n",
            "      1.00107\n",
            "      4863.49000\n",
    -       "      10807.800000\n",
    +       "      10549.900000\n",
            "      1.000320\n",
            "    \n",
            "    \n",
    @@ -583,7 +583,7 @@
            "      1.000210\n",
            "      1.00210\n",
            "      4344.92000\n",
    -       "      9655.380000\n",
    +       "      9424.990000\n",
            "      0.999725\n",
            "    \n",
            "    \n",
    @@ -595,7 +595,7 @@
            "      1.000430\n",
            "      1.00200\n",
            "      4385.54000\n",
    -       "      9745.650000\n",
    +       "      9513.100000\n",
            "      0.999669\n",
            "    \n",
            "    \n",
    @@ -607,7 +607,7 @@
            "      1.001150\n",
            "      1.00292\n",
            "      4664.71000\n",
    -       "      10366.000000\n",
    +       "      10118.700000\n",
            "      0.999536\n",
            "    \n",
            "    \n",
    @@ -619,7 +619,7 @@
            "      1.001540\n",
            "      1.00321\n",
            "      4786.98000\n",
    -       "      10637.700000\n",
    +       "      10383.900000\n",
            "      0.999197\n",
            "    \n",
            "    \n",
    @@ -631,7 +631,7 @@
            "      0.961783\n",
            "      1.09259\n",
            "      256.47117\n",
    -       "      569.935933\n",
    +       "      556.336594\n",
            "      1.011019\n",
            "    \n",
            "  \n",
    @@ -649,13 +649,13 @@
            "sigma      0.963840  0.004465  0.071505    0.849600    0.961783    1.09259   \n",
            "\n",
            "              N_Eff       N_Eff/s     R_hat  \n",
    -       "lp__      938.42000   2085.380000  1.001480  \n",
    -       "beta[1]  4863.49000  10807.800000  1.000320  \n",
    -       "beta[2]  4344.92000   9655.380000  0.999725  \n",
    -       "beta[3]  4385.54000   9745.650000  0.999669  \n",
    -       "beta[4]  4664.71000  10366.000000  0.999536  \n",
    -       "beta[5]  4786.98000  10637.700000  0.999197  \n",
    -       "sigma     256.47117    569.935933  1.011019  "
    +       "lp__      938.42000   2035.620000  1.001480  \n",
    +       "beta[1]  4863.49000  10549.900000  1.000320  \n",
    +       "beta[2]  4344.92000   9424.990000  0.999725  \n",
    +       "beta[3]  4385.54000   9513.100000  0.999669  \n",
    +       "beta[4]  4664.71000  10118.700000  0.999536  \n",
    +       "beta[5]  4786.98000  10383.900000  0.999197  \n",
    +       "sigma     256.47117    556.336594  1.011019  "
           ]
          },
          "execution_count": 5,
    @@ -679,10 +679,10 @@
        "execution_count": 6,
        "metadata": {
         "execution": {
    -     "iopub.execute_input": "2022-08-23T18:58:55.232537Z",
    -     "iopub.status.busy": "2022-08-23T18:58:55.232080Z",
    -     "iopub.status.idle": "2022-08-23T18:58:55.291013Z",
    -     "shell.execute_reply": "2022-08-23T18:58:55.290247Z"
    +     "iopub.execute_input": "2022-08-25T13:29:53.287418Z",
    +     "iopub.status.busy": "2022-08-25T13:29:53.286667Z",
    +     "iopub.status.idle": "2022-08-25T13:29:53.347367Z",
    +     "shell.execute_reply": "2022-08-25T13:29:53.346371Z"
         }
        },
        "outputs": [
    @@ -690,7 +690,7 @@
          "name": "stdout",
          "output_type": "stream",
          "text": [
    -      "Processing csv files: /tmp/tmpkher3kfz/blrlaeynh9b/blr-20220823185854_1.csv, /tmp/tmpkher3kfz/blrlaeynh9b/blr-20220823185854_2.csv, /tmp/tmpkher3kfz/blrlaeynh9b/blr-20220823185854_3.csv, /tmp/tmpkher3kfz/blrlaeynh9b/blr-20220823185854_4.csv\n",
    +      "Processing csv files: /tmp/tmpyvkgpyxk/blrty52urby/blr-20220825132952_1.csv, /tmp/tmpyvkgpyxk/blrty52urby/blr-20220825132952_2.csv, /tmp/tmpyvkgpyxk/blrty52urby/blr-20220825132952_3.csv, /tmp/tmpyvkgpyxk/blrty52urby/blr-20220825132952_4.csv\n",
           "\n",
           "Checking sampler transitions treedepth.\n",
           "Treedepth satisfactory for all transitions.\n",
    @@ -726,10 +726,10 @@
        "execution_count": 7,
        "metadata": {
         "execution": {
    -     "iopub.execute_input": "2022-08-23T18:58:55.294521Z",
    -     "iopub.status.busy": "2022-08-23T18:58:55.294276Z",
    -     "iopub.status.idle": "2022-08-23T18:58:55.475518Z",
    -     "shell.execute_reply": "2022-08-23T18:58:55.474727Z"
    +     "iopub.execute_input": "2022-08-25T13:29:53.351563Z",
    +     "iopub.status.busy": "2022-08-25T13:29:53.351229Z",
    +     "iopub.status.idle": "2022-08-25T13:29:53.552085Z",
    +     "shell.execute_reply": "2022-08-25T13:29:53.551207Z"
         }
        },
        "outputs": [
    @@ -737,7 +737,7 @@
          "name": "stderr",
          "output_type": "stream",
          "text": [
    -      "18:58:55 - cmdstanpy - INFO - CmdStan start processing\n"
    +      "13:29:53 - cmdstanpy - INFO - CmdStan start processing\n"
          ]
         },
         {
    @@ -843,8 +843,9 @@
          "name": "stderr",
          "output_type": "stream",
          "text": [
    -      "\r",
    -      "chain 1 |\u001b[34m██████████\u001b[0m| 00:00 Sampling completed"
    +      "\n",
    +      "\n",
    +      "\n"
          ]
         },
         {
    @@ -852,25 +853,22 @@
          "output_type": "stream",
          "text": [
           "\r",
    -      "chain 1 |\u001b[34m██████████\u001b[0m| 00:00 Sampling completed"
    +      "chain 4 |\u001b[34m█▋        \u001b[0m| 00:00 Iteration:    1 / 1075 [  0%]  (Warmup)"
          ]
         },
         {
          "name": "stderr",
          "output_type": "stream",
          "text": [
    -      "\n",
    -      "\r",
    -      "chain 2 |\u001b[34m██████████\u001b[0m| 00:00 Sampling completed                       "
    +      "\u001b[A\u001b[A\u001b[A"
          ]
         },
         {
          "name": "stderr",
          "output_type": "stream",
          "text": [
    -      "\n",
    -      "\n",
    -      "\n"
    +      "\r",
    +      "chain 1 |\u001b[34m██████████\u001b[0m| 00:00 Sampling completed"
          ]
         },
         {
    @@ -878,55 +876,57 @@
          "output_type": "stream",
          "text": [
           "\r",
    -      "chain 3 |\u001b[34m██████████\u001b[0m| 00:00 Sampling completed"
    +      "chain 1 |\u001b[34m██████████\u001b[0m| 00:00 Sampling completed"
          ]
         },
         {
          "name": "stderr",
          "output_type": "stream",
          "text": [
    -      "\u001b[A\u001b[A"
    +      "\n",
    +      "\r",
    +      "chain 2 |\u001b[34m██████████\u001b[0m| 00:00 Sampling completed                       "
          ]
         },
         {
          "name": "stderr",
          "output_type": "stream",
          "text": [
    -      "\r",
    -      "chain 3 |\u001b[34m██████████\u001b[0m| 00:00 Sampling completed"
    +      "\n",
    +      "\n",
    +      "\n"
          ]
         },
         {
          "name": "stderr",
          "output_type": "stream",
          "text": [
    -      "\n",
    -      "\n",
    -      "\n",
    -      "\n"
    +      "\r",
    +      "chain 3 |\u001b[34m██████████\u001b[0m| 00:00 Sampling completed"
          ]
         },
         {
          "name": "stderr",
          "output_type": "stream",
          "text": [
    -      "\r",
    -      "chain 4 |\u001b[34m██████████\u001b[0m| 00:00 Sampling completed"
    +      "\u001b[A\u001b[A"
          ]
         },
         {
          "name": "stderr",
          "output_type": "stream",
          "text": [
    -      "\u001b[A\u001b[A\u001b[A"
    +      "\r",
    +      "chain 3 |\u001b[34m██████████\u001b[0m| 00:00 Sampling completed"
          ]
         },
         {
          "name": "stderr",
          "output_type": "stream",
          "text": [
    +      "\n",
           "\r",
    -      "chain 4 |\u001b[34m██████████\u001b[0m| 00:00 Sampling completed"
    +      "chain 4 |\u001b[34m██████████\u001b[0m| 00:00 Sampling completed                     "
          ]
         },
         {
    @@ -962,25 +962,25 @@
          "output_type": "stream",
          "text": [
           "\n",
    -      "18:58:55 - cmdstanpy - INFO - CmdStan done processing.\n"
    +      "13:29:53 - cmdstanpy - INFO - CmdStan done processing.\n"
          ]
         },
         {
    -     "name": "stderr",
    +     "name": "stdout",
          "output_type": "stream",
          "text": [
    -      "18:58:55 - cmdstanpy - WARNING - Some chains may have failed to converge.\n",
    -      "\tChain 1 had 161 divergent transitions (16.1%)\n",
    -      "\tChain 3 had 147 divergent transitions (14.7%)\n",
    -      "\tChain 4 had 244 divergent transitions (24.4%)\n",
    -      "\tUse function \"diagnose()\" to see further information.\n"
    +      "\n"
          ]
         },
         {
    -     "name": "stdout",
    +     "name": "stderr",
          "output_type": "stream",
          "text": [
    -      "\n"
    +      "13:29:53 - cmdstanpy - WARNING - Some chains may have failed to converge.\n",
    +      "\tChain 1 had 161 divergent transitions (16.1%)\n",
    +      "\tChain 3 had 147 divergent transitions (14.7%)\n",
    +      "\tChain 4 had 244 divergent transitions (24.4%)\n",
    +      "\tUse function \"diagnose()\" to see further information.\n"
          ]
         }
        ],
    @@ -993,10 +993,10 @@
        "execution_count": 8,
        "metadata": {
         "execution": {
    -     "iopub.execute_input": "2022-08-23T18:58:55.479074Z",
    -     "iopub.status.busy": "2022-08-23T18:58:55.478734Z",
    -     "iopub.status.idle": "2022-08-23T18:58:55.564131Z",
    -     "shell.execute_reply": "2022-08-23T18:58:55.563367Z"
    +     "iopub.execute_input": "2022-08-25T13:29:53.555931Z",
    +     "iopub.status.busy": "2022-08-25T13:29:53.555455Z",
    +     "iopub.status.idle": "2022-08-25T13:29:53.644358Z",
    +     "shell.execute_reply": "2022-08-25T13:29:53.643482Z"
         }
        },
        "outputs": [
    @@ -1042,7 +1042,7 @@
            "      -165.541000\n",
            "      -154.33900\n",
            "      2.03097\n",
    -       "      13.10310\n",
    +       "      12.08910\n",
            "      11.37150\n",
            "    \n",
            "    \n",
    @@ -1054,7 +1054,7 @@
            "      0.999494\n",
            "      1.00252\n",
            "      232.18100\n",
    -       "      1497.94000\n",
    +       "      1382.03000\n",
            "      1.01286\n",
            "    \n",
            "    \n",
    @@ -1066,7 +1066,7 @@
            "      1.000410\n",
            "      1.00459\n",
            "      110.88200\n",
    -       "      715.37000\n",
    +       "      660.01400\n",
            "      1.04571\n",
            "    \n",
            "    \n",
    @@ -1078,7 +1078,7 @@
            "      1.000480\n",
            "      1.00442\n",
            "      62.47110\n",
    -       "      403.03900\n",
    +       "      371.85200\n",
            "      1.04607\n",
            "    \n",
            "    \n",
    @@ -1090,7 +1090,7 @@
            "      1.001690\n",
            "      1.00512\n",
            "      103.34500\n",
    -       "      666.74000\n",
    +       "      615.14700\n",
            "      1.09049\n",
            "    \n",
            "    \n",
    @@ -1102,7 +1102,7 @@
            "      1.001290\n",
            "      1.00443\n",
            "      180.70500\n",
    -       "      1165.84000\n",
    +       "      1075.63000\n",
            "      1.03165\n",
            "    \n",
            "    \n",
    @@ -1114,7 +1114,7 @@
            "      2.708830\n",
            "      3.17346\n",
            "      2.03514\n",
    -       "      13.12994\n",
    +       "      12.11393\n",
            "      10.50420\n",
            "    \n",
            "  \n",
    @@ -1132,13 +1132,13 @@
            "sigma      1.962000   0.725020   1.034300    0.907470    2.708830    3.17346   \n",
            "\n",
            "             N_Eff     N_Eff/s     R_hat  \n",
    -       "lp__       2.03097    13.10310  11.37150  \n",
    -       "beta[1]  232.18100  1497.94000   1.01286  \n",
    -       "beta[2]  110.88200   715.37000   1.04571  \n",
    -       "beta[3]   62.47110   403.03900   1.04607  \n",
    -       "beta[4]  103.34500   666.74000   1.09049  \n",
    -       "beta[5]  180.70500  1165.84000   1.03165  \n",
    -       "sigma      2.03514    13.12994  10.50420  "
    +       "lp__       2.03097    12.08910  11.37150  \n",
    +       "beta[1]  232.18100  1382.03000   1.01286  \n",
    +       "beta[2]  110.88200   660.01400   1.04571  \n",
    +       "beta[3]   62.47110   371.85200   1.04607  \n",
    +       "beta[4]  103.34500   615.14700   1.09049  \n",
    +       "beta[5]  180.70500  1075.63000   1.03165  \n",
    +       "sigma      2.03514    12.11393  10.50420  "
           ]
          },
          "execution_count": 8,
    @@ -1155,10 +1155,10 @@
        "execution_count": 9,
        "metadata": {
         "execution": {
    -     "iopub.execute_input": "2022-08-23T18:58:55.567401Z",
    -     "iopub.status.busy": "2022-08-23T18:58:55.567035Z",
    -     "iopub.status.idle": "2022-08-23T18:58:55.625001Z",
    -     "shell.execute_reply": "2022-08-23T18:58:55.624211Z"
    +     "iopub.execute_input": "2022-08-25T13:29:53.648058Z",
    +     "iopub.status.busy": "2022-08-25T13:29:53.647552Z",
    +     "iopub.status.idle": "2022-08-25T13:29:53.711136Z",
    +     "shell.execute_reply": "2022-08-25T13:29:53.710090Z"
         }
        },
        "outputs": [
    @@ -1166,7 +1166,7 @@
          "name": "stdout",
          "output_type": "stream",
          "text": [
    -      "Processing csv files: /tmp/tmpkher3kfz/blrux5anwjl/blr-20220823185855_1.csv, /tmp/tmpkher3kfz/blrux5anwjl/blr-20220823185855_2.csv, /tmp/tmpkher3kfz/blrux5anwjl/blr-20220823185855_3.csv, /tmp/tmpkher3kfz/blrux5anwjl/blr-20220823185855_4.csv\n",
    +      "Processing csv files: /tmp/tmpyvkgpyxk/blr2u04w073/blr-20220825132953_1.csv, /tmp/tmpyvkgpyxk/blr2u04w073/blr-20220825132953_2.csv, /tmp/tmpyvkgpyxk/blr2u04w073/blr-20220825132953_3.csv, /tmp/tmpyvkgpyxk/blr2u04w073/blr-20220825132953_4.csv\n",
           "\n",
           "Checking sampler transitions treedepth.\n",
           "Treedepth satisfactory for all transitions.\n",
    diff --git a/docs/users-guide/examples/Variational Inference.html b/docs/users-guide/examples/Variational Inference.html
    index 1fac03a4..bc5f9f26 100644
    --- a/docs/users-guide/examples/Variational Inference.html	
    +++ b/docs/users-guide/examples/Variational Inference.html	
    @@ -6,7 +6,7 @@
         
         
     
    -    Variational Inference in Stan — CmdStanPy 1.0.6 documentation
    +    Variational Inference in Stan — CmdStanPy 1.0.7 documentation
         
       
       
    @@ -59,7 +59,7 @@
       
     
    @@ -558,8 +558,8 @@ 

    Example: variational inference for model
     /opt/hostedtoolcache/Python/3.9.13/x64/lib/python3.9/site-packages/tqdm/auto.py:22: TqdmWarning: IProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.readthedocs.io/en/stable/user_install.html
       from .autonotebook import tqdm as notebook_tqdm
    -18:58:57 - cmdstanpy - INFO - Chain [1] start processing
    -18:58:57 - cmdstanpy - INFO - Chain [1] done processing
    +13:29:56 - cmdstanpy - INFO - Chain [1] start processing
    +13:29:56 - cmdstanpy - INFO - Chain [1] done processing
     

    The class `CmdStanVB <https://cmdstanpy.readthedocs.io/en/latest/api.html#stanvariational>`__ provides the following properties to access information about the parameter names, estimated means, and the sample: + column_names + variational_params_dict + variational_params_np + variational_params_pd + variational_sample

    @@ -592,7 +592,7 @@

    Example: variational inference for model
    -0.230433
    +0.230342
     

    @@ -626,10 +626,10 @@

    Example: variational inference for model
    -18:58:57 - cmdstanpy - INFO - compiling stan file /home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/eta_should_fail.stan to exe file /home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/eta_should_fail
    -18:59:08 - cmdstanpy - INFO - compiled model executable: /home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/eta_should_fail
    -18:59:08 - cmdstanpy - INFO - Chain [1] start processing
    -18:59:08 - cmdstanpy - INFO - Chain [1] done processing
    +13:29:56 - cmdstanpy - INFO - compiling stan file /home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/eta_should_fail.stan to exe file /home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/eta_should_fail
    +13:30:08 - cmdstanpy - INFO - compiled model executable: /home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/eta_should_fail
    +13:30:08 - cmdstanpy - INFO - Chain [1] start processing
    +13:30:08 - cmdstanpy - INFO - Chain [1] done processing
     

    @@ -676,9 +676,9 @@

    Example: variational inference for model
    -18:59:09 - cmdstanpy - INFO - Chain [1] start processing
    -18:59:09 - cmdstanpy - INFO - Chain [1] done processing
    -18:59:09 - cmdstanpy - WARNING - The algorithm may not have converged.
    +13:30:08 - cmdstanpy - INFO - Chain [1] start processing
    +13:30:09 - cmdstanpy - INFO - Chain [1] done processing
    +13:30:09 - cmdstanpy - WARNING - The algorithm may not have converged.
     Proceeding because require_converged is set to False
     

    @@ -700,8 +700,8 @@

    Example: variational inference for model api docs, section `CmdStanModel.variational <https://cmdstanpy.readthedocs.io/en/latest/api.html#cmdstanpy.CmdStanModel.variational>`__ for a full description of all arguments.

    diff --git a/docs/users-guide/examples/Variational Inference.ipynb b/docs/users-guide/examples/Variational Inference.ipynb index 4f7f27a6..00077efb 100644 --- a/docs/users-guide/examples/Variational Inference.ipynb +++ b/docs/users-guide/examples/Variational Inference.ipynb @@ -42,10 +42,10 @@ "execution_count": 1, "metadata": { "execution": { - "iopub.execute_input": "2022-08-23T18:58:57.378900Z", - "iopub.status.busy": "2022-08-23T18:58:57.378589Z", - "iopub.status.idle": "2022-08-23T18:58:57.757962Z", - "shell.execute_reply": "2022-08-23T18:58:57.757232Z" + "iopub.execute_input": "2022-08-25T13:29:55.906343Z", + "iopub.status.busy": "2022-08-25T13:29:55.906042Z", + "iopub.status.idle": "2022-08-25T13:29:56.328048Z", + "shell.execute_reply": "2022-08-25T13:29:56.327167Z" } }, "outputs": [ @@ -61,14 +61,14 @@ "name": "stderr", "output_type": "stream", "text": [ - "18:58:57 - cmdstanpy - INFO - Chain [1] start processing\n" + "13:29:56 - cmdstanpy - INFO - Chain [1] start processing\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ - "18:58:57 - cmdstanpy - INFO - Chain [1] done processing\n" + "13:29:56 - cmdstanpy - INFO - Chain [1] done processing\n" ] } ], @@ -103,10 +103,10 @@ "execution_count": 2, "metadata": { "execution": { - "iopub.execute_input": "2022-08-23T18:58:57.761692Z", - "iopub.status.busy": "2022-08-23T18:58:57.761443Z", - "iopub.status.idle": "2022-08-23T18:58:57.767438Z", - "shell.execute_reply": "2022-08-23T18:58:57.766262Z" + "iopub.execute_input": "2022-08-25T13:29:56.332562Z", + "iopub.status.busy": "2022-08-25T13:29:56.332190Z", + "iopub.status.idle": "2022-08-25T13:29:56.336354Z", + "shell.execute_reply": "2022-08-25T13:29:56.335826Z" }, "scrolled": true }, @@ -128,10 +128,10 @@ "execution_count": 3, "metadata": { "execution": { - "iopub.execute_input": "2022-08-23T18:58:57.770166Z", - "iopub.status.busy": "2022-08-23T18:58:57.769943Z", - "iopub.status.idle": "2022-08-23T18:58:57.775495Z", - "shell.execute_reply": "2022-08-23T18:58:57.774381Z" + "iopub.execute_input": "2022-08-25T13:29:56.339498Z", + "iopub.status.busy": "2022-08-25T13:29:56.339050Z", + "iopub.status.idle": "2022-08-25T13:29:56.346480Z", + "shell.execute_reply": "2022-08-25T13:29:56.345764Z" } }, "outputs": [ @@ -139,7 +139,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "0.230433\n" + "0.230342\n" ] } ], @@ -152,10 +152,10 @@ "execution_count": 4, "metadata": { "execution": { - "iopub.execute_input": "2022-08-23T18:58:57.778610Z", - "iopub.status.busy": "2022-08-23T18:58:57.778177Z", - "iopub.status.idle": "2022-08-23T18:58:57.784452Z", - "shell.execute_reply": "2022-08-23T18:58:57.783267Z" + "iopub.execute_input": "2022-08-25T13:29:56.350086Z", + "iopub.status.busy": "2022-08-25T13:29:56.349644Z", + "iopub.status.idle": "2022-08-25T13:29:56.355335Z", + "shell.execute_reply": "2022-08-25T13:29:56.354462Z" } }, "outputs": [ @@ -185,10 +185,10 @@ "execution_count": 5, "metadata": { "execution": { - "iopub.execute_input": "2022-08-23T18:58:57.787603Z", - "iopub.status.busy": "2022-08-23T18:58:57.787163Z", - "iopub.status.idle": "2022-08-23T18:59:09.729569Z", - "shell.execute_reply": "2022-08-23T18:59:09.728232Z" + "iopub.execute_input": "2022-08-25T13:29:56.359861Z", + "iopub.status.busy": "2022-08-25T13:29:56.359117Z", + "iopub.status.idle": "2022-08-25T13:30:08.954269Z", + "shell.execute_reply": "2022-08-25T13:30:08.953337Z" }, "tags": [ "raises-exception" @@ -199,28 +199,28 @@ "name": "stderr", "output_type": "stream", "text": [ - "18:58:57 - cmdstanpy - INFO - compiling stan file /home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/eta_should_fail.stan to exe file /home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/eta_should_fail\n" + "13:29:56 - cmdstanpy - INFO - compiling stan file /home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/eta_should_fail.stan to exe file /home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/eta_should_fail\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ - "18:59:08 - cmdstanpy - INFO - compiled model executable: /home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/eta_should_fail\n" + "13:30:08 - cmdstanpy - INFO - compiled model executable: /home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/eta_should_fail\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ - "18:59:08 - cmdstanpy - INFO - Chain [1] start processing\n" + "13:30:08 - cmdstanpy - INFO - Chain [1] start processing\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ - "18:59:08 - cmdstanpy - INFO - Chain [1] done processing\n" + "13:30:08 - cmdstanpy - INFO - Chain [1] done processing\n" ] }, { @@ -253,10 +253,10 @@ "execution_count": 6, "metadata": { "execution": { - "iopub.execute_input": "2022-08-23T18:59:09.733252Z", - "iopub.status.busy": "2022-08-23T18:59:09.732823Z", - "iopub.status.idle": "2022-08-23T18:59:09.793025Z", - "shell.execute_reply": "2022-08-23T18:59:09.791750Z" + "iopub.execute_input": "2022-08-25T13:30:08.958204Z", + "iopub.status.busy": "2022-08-25T13:30:08.957951Z", + "iopub.status.idle": "2022-08-25T13:30:09.019084Z", + "shell.execute_reply": "2022-08-25T13:30:09.018340Z" } }, "outputs": [ @@ -264,21 +264,21 @@ "name": "stderr", "output_type": "stream", "text": [ - "18:59:09 - cmdstanpy - INFO - Chain [1] start processing\n" + "13:30:08 - cmdstanpy - INFO - Chain [1] start processing\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ - "18:59:09 - cmdstanpy - INFO - Chain [1] done processing\n" + "13:30:09 - cmdstanpy - INFO - Chain [1] done processing\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ - "18:59:09 - cmdstanpy - WARNING - The algorithm may not have converged.\n", + "13:30:09 - cmdstanpy - WARNING - The algorithm may not have converged.\n", "Proceeding because require_converged is set to False\n" ] } @@ -299,10 +299,10 @@ "execution_count": 7, "metadata": { "execution": { - "iopub.execute_input": "2022-08-23T18:59:09.796825Z", - "iopub.status.busy": "2022-08-23T18:59:09.796444Z", - "iopub.status.idle": "2022-08-23T18:59:09.806601Z", - "shell.execute_reply": "2022-08-23T18:59:09.806092Z" + "iopub.execute_input": "2022-08-25T13:30:09.022964Z", + "iopub.status.busy": "2022-08-25T13:30:09.022506Z", + "iopub.status.idle": "2022-08-25T13:30:09.033489Z", + "shell.execute_reply": "2022-08-25T13:30:09.032794Z" } }, "outputs": [ @@ -312,8 +312,8 @@ "OrderedDict([('lp__', 0.0),\n", " ('log_p__', 0.0),\n", " ('log_g__', 0.0),\n", - " ('mu[1]', 0.0640189),\n", - " ('mu[2]', 0.0211201)])" + " ('mu[1]', -0.0410882),\n", + " ('mu[2]', 0.0440459)])" ] }, "execution_count": 7, diff --git a/docs/users-guide/hello_world.html b/docs/users-guide/hello_world.html index 1224e5c4..378779d5 100644 --- a/docs/users-guide/hello_world.html +++ b/docs/users-guide/hello_world.html @@ -6,7 +6,7 @@ - “Hello, World!” — CmdStanPy 1.0.6 documentation + “Hello, World!” — CmdStanPy 1.0.7 documentation @@ -59,7 +59,7 @@ @@ -433,13 +433,13 @@

    Accessing the results
    # access model variable by name
     In [9]: print(fit.stan_variable('theta'))
    -[0.186233 0.143687 0.091574 ... 0.274911 0.133892 0.136057]
    +[0.179125 0.204862 0.192807 ... 0.12798  0.286286 0.248383]
     
     In [10]: print(fit.draws_pd('theta')[:3])
           theta
    -0  0.186233
    -1  0.143687
    -2  0.091574
    +0  0.179125
    +1  0.204862
    +2  0.192807
     
     In [11]: print(fit.draws_xr('theta'))
     <xarray.Dataset>
    @@ -448,7 +448,7 @@ 

    Accessing the results * chain (chain) int64 1 2 3 4 * draw (draw) int64 0 1 2 3 4 5 6 7 8 ... 992 993 994 995 996 997 998 999 Data variables: - theta (chain, draw) float64 0.1862 0.1437 0.09157 ... 0.1339 0.1361 + theta (chain, draw) float64 0.1791 0.2049 0.1928 ... 0.128 0.2863 0.2484 Attributes: stan_version: 2.30.0 model: bernoulli_model @@ -478,18 +478,18 @@

    Accessing the resultsIn [15]: fit.draws_pd() Out[15]: - lp__ accept_stat__ stepsize__ ... divergent__ energy__ theta -0 -6.89700 0.947727 1.101290 ... 0.0 6.99652 0.186233 -1 -7.21642 0.924881 1.101290 ... 0.0 7.21940 0.143687 -2 -8.03620 0.857268 1.101290 ... 0.0 8.03760 0.091574 -3 -10.69590 0.932073 1.101290 ... 0.0 11.48940 0.647868 -4 -6.80160 1.000000 1.101290 ... 0.0 9.58406 0.210643 -... ... ... ... ... ... ... ... -3995 -7.37753 0.945035 0.888086 ... 0.0 7.37756 0.404115 -3996 -6.76707 0.947942 0.888086 ... 0.0 7.72180 0.274911 -3997 -6.76707 0.615003 0.888086 ... 0.0 8.90034 0.274911 -3998 -7.32588 0.832552 0.888086 ... 0.0 7.76475 0.133892 -3999 -7.30028 1.000000 0.888086 ... 0.0 7.41109 0.136057 + lp__ accept_stat__ stepsize__ ... divergent__ energy__ theta +0 -6.93547 1.000000 1.017540 ... 0.0 7.02660 0.179125 +1 -6.81941 1.000000 1.017540 ... 0.0 6.90990 0.204862 +2 -6.86593 0.988312 1.017540 ... 0.0 6.87645 0.192807 +3 -7.39833 0.865988 1.017540 ... 0.0 7.69372 0.406802 +4 -6.75601 1.000000 1.017540 ... 0.0 7.20515 0.266019 +... ... ... ... ... ... ... ... +3995 -6.75089 1.000000 0.926829 ... 0.0 6.76236 0.240606 +3996 -7.14210 0.909684 0.926829 ... 0.0 7.22993 0.151280 +3997 -7.40014 0.955873 0.926829 ... 0.0 7.42595 0.127980 +3998 -6.78775 0.948321 0.926829 ... 0.0 7.63194 0.286286 +3999 -6.74811 0.999957 0.926829 ... 0.0 6.78531 0.248383 [4000 rows x 8 columns]

    @@ -501,13 +501,13 @@

    Accessing the resultsdiag_e In [17]: print(fit.metric) -[[0.476924] - [0.352321] - [0.531111] - [0.530174]] +[[0.509565] + [0.600678] + [0.52729 ] + [0.5595 ]] In [18]: print(fit.step_size) -[1.10129 1.28151 0.962403 0.888086] +[1.01754 0.887862 1.03376 0.926829]

    The CmdStanMCMC object also provides access to metadata about the model and the sampler run.

    @@ -515,7 +515,7 @@

    Accessing the resultsbernoulli_model In [20]: print(fit.metadata.cmdstan_config['seed']) -28271 +79174 In [21]: print(fit.metadata.stan_vars_cols.keys()) dict_keys(['theta']) @@ -537,8 +537,8 @@

    CmdStan utilities:
    In [23]: fit.summary()
     Out[23]: 
                Mean      MCSE    StdDev  ...    N_Eff  N_Eff/s    R_hat
    -lp__  -7.261660  0.017316  0.702779  ...  1647.21  40175.9  1.00064
    -theta  0.247289  0.003183  0.119199  ...  1402.33  34203.1  1.00006
    +lp__  -7.298720  0.019946  0.753564  ...  1427.36  29736.6  1.00056
    +theta  0.247262  0.003402  0.121020  ...  1265.31  26360.7  1.00227
     
     [2 rows x 9 columns]
     
    @@ -550,7 +550,7 @@

    CmdStan utilities: diagnose() method runs this utility and prints the output to the console.

    In [24]: print(fit.diagnose())
    -Processing csv files: /tmp/tmpcmi54clh/bernoullik_gx5ac0/bernoulli-20220823185919_1.csv, /tmp/tmpcmi54clh/bernoullik_gx5ac0/bernoulli-20220823185919_2.csv, /tmp/tmpcmi54clh/bernoullik_gx5ac0/bernoulli-20220823185919_3.csv, /tmp/tmpcmi54clh/bernoullik_gx5ac0/bernoulli-20220823185919_4.csv
    +Processing csv files: /tmp/tmpvmhl6e01/bernoulli_rnkfcga/bernoulli-20220825133019_1.csv, /tmp/tmpvmhl6e01/bernoulli_rnkfcga/bernoulli-20220825133019_2.csv, /tmp/tmpvmhl6e01/bernoulli_rnkfcga/bernoulli-20220825133019_3.csv, /tmp/tmpvmhl6e01/bernoulli_rnkfcga/bernoulli-20220825133019_4.csv
     
     Checking sampler transitions treedepth.
     Treedepth satisfactory for all transitions.
    diff --git a/docs/users-guide/outputs.html b/docs/users-guide/outputs.html
    index 22a50407..697bd167 100644
    --- a/docs/users-guide/outputs.html
    +++ b/docs/users-guide/outputs.html
    @@ -6,7 +6,7 @@
         
         
     
    -    Controlling Outputs — CmdStanPy 1.0.6 documentation
    +    Controlling Outputs — CmdStanPy 1.0.7 documentation
         
       
       
    @@ -59,7 +59,7 @@
       
     
    @@ -297,15 +297,15 @@ 

    CSV File OutputsIn [7]: print(fit) CmdStanMCMC: model=bernoulli chains=4['method=sample', 'algorithm=hmc', 'adapt', 'engaged=1'] csv_files: - /tmp/tmpcmi54clh/bernoulli3m8g8fsb/bernoulli-20220823185919_1.csv - /tmp/tmpcmi54clh/bernoulli3m8g8fsb/bernoulli-20220823185919_2.csv - /tmp/tmpcmi54clh/bernoulli3m8g8fsb/bernoulli-20220823185919_3.csv - /tmp/tmpcmi54clh/bernoulli3m8g8fsb/bernoulli-20220823185919_4.csv + /tmp/tmpvmhl6e01/bernoullil5w0sndq/bernoulli-20220825133019_1.csv + /tmp/tmpvmhl6e01/bernoullil5w0sndq/bernoulli-20220825133019_2.csv + /tmp/tmpvmhl6e01/bernoullil5w0sndq/bernoulli-20220825133019_3.csv + /tmp/tmpvmhl6e01/bernoullil5w0sndq/bernoulli-20220825133019_4.csv output_files: - /tmp/tmpcmi54clh/bernoulli3m8g8fsb/bernoulli-20220823185919_0-stdout.txt - /tmp/tmpcmi54clh/bernoulli3m8g8fsb/bernoulli-20220823185919_1-stdout.txt - /tmp/tmpcmi54clh/bernoulli3m8g8fsb/bernoulli-20220823185919_2-stdout.txt - /tmp/tmpcmi54clh/bernoulli3m8g8fsb/bernoulli-20220823185919_3-stdout.txt + /tmp/tmpvmhl6e01/bernoullil5w0sndq/bernoulli-20220825133019_0-stdout.txt + /tmp/tmpvmhl6e01/bernoullil5w0sndq/bernoulli-20220825133019_1-stdout.txt + /tmp/tmpvmhl6e01/bernoullil5w0sndq/bernoulli-20220825133019_2-stdout.txt + /tmp/tmpvmhl6e01/bernoullil5w0sndq/bernoulli-20220825133019_3-stdout.txt

    The output_dir argument is an optional argument which specifies @@ -319,10 +319,10 @@

    CSV File OutputsINFO:cmdstanpy:CmdStan done processing. In [9]: !ls outputs/ -bernoulli-20220823185919_0-stdout.txt bernoulli-20220823185919_2.csv -bernoulli-20220823185919_1-stdout.txt bernoulli-20220823185919_3-stdout.txt -bernoulli-20220823185919_1.csv bernoulli-20220823185919_3.csv -bernoulli-20220823185919_2-stdout.txt bernoulli-20220823185919_4.csv +bernoulli-20220825133020_0-stdout.txt bernoulli-20220825133020_2.csv +bernoulli-20220825133020_1-stdout.txt bernoulli-20220825133020_3-stdout.txt +bernoulli-20220825133020_1.csv bernoulli-20220825133020_3.csv +bernoulli-20220825133020_2-stdout.txt bernoulli-20220825133020_4.csv

    Alternatively, the save_csvfiles() function moves the CSV files @@ -335,8 +335,8 @@

    CSV File OutputsIn [11]: fit.save_csvfiles(dir='some/path') In [12]: !ls some/path -bernoulli-20220823185920_1.csv bernoulli-20220823185920_3.csv -bernoulli-20220823185920_2.csv bernoulli-20220823185920_4.csv +bernoulli-20220825133020_1.csv bernoulli-20220825133020_3.csv +bernoulli-20220825133020_2.csv bernoulli-20220825133020_4.csv @@ -399,40 +399,40 @@

    Logging ....: for line in logs.readlines(): ....: print(line.strip()) ....: -18:59:20 - cmdstanpy - DEBUG - cmd: /home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/bernoulli info +13:30:20 - cmdstanpy - DEBUG - cmd: /home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/bernoulli info cwd: None -18:59:20 - cmdstanpy - INFO - CmdStan start processing -18:59:20 - cmdstanpy - DEBUG - idx 0 -18:59:20 - cmdstanpy - DEBUG - running CmdStan, num_threads: 1 -18:59:20 - cmdstanpy - DEBUG - CmdStan args: ['/home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/bernoulli', 'id=1', 'random', 'seed=11847', 'data', 'file=users-guide/examples/bernoulli.data.json', 'output', 'file=/tmp/tmpcmi54clh/bernoullibaz_rbid/bernoulli-20220823185920_1.csv', 'method=sample', 'algorithm=hmc', 'adapt', 'engaged=1'] -18:59:20 - cmdstanpy - INFO - Chain [1] start processing -18:59:20 - cmdstanpy - DEBUG - idx 1 -18:59:20 - cmdstanpy - DEBUG - running CmdStan, num_threads: 1 -18:59:20 - cmdstanpy - DEBUG - CmdStan args: ['/home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/bernoulli', 'id=2', 'random', 'seed=11847', 'data', 'file=users-guide/examples/bernoulli.data.json', 'output', 'file=/tmp/tmpcmi54clh/bernoullibaz_rbid/bernoulli-20220823185920_2.csv', 'method=sample', 'algorithm=hmc', 'adapt', 'engaged=1'] -18:59:20 - cmdstanpy - INFO - Chain [2] start processing -18:59:20 - cmdstanpy - INFO - Chain [1] done processing -18:59:20 - cmdstanpy - DEBUG - idx 2 -18:59:20 - cmdstanpy - DEBUG - running CmdStan, num_threads: 1 -18:59:20 - cmdstanpy - DEBUG - CmdStan args: ['/home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/bernoulli', 'id=3', 'random', 'seed=11847', 'data', 'file=users-guide/examples/bernoulli.data.json', 'output', 'file=/tmp/tmpcmi54clh/bernoullibaz_rbid/bernoulli-20220823185920_3.csv', 'method=sample', 'algorithm=hmc', 'adapt', 'engaged=1'] -18:59:20 - cmdstanpy - INFO - Chain [3] start processing -18:59:20 - cmdstanpy - INFO - Chain [2] done processing -18:59:20 - cmdstanpy - DEBUG - idx 3 -18:59:20 - cmdstanpy - DEBUG - running CmdStan, num_threads: 1 -18:59:20 - cmdstanpy - DEBUG - CmdStan args: ['/home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/bernoulli', 'id=4', 'random', 'seed=11847', 'data', 'file=users-guide/examples/bernoulli.data.json', 'output', 'file=/tmp/tmpcmi54clh/bernoullibaz_rbid/bernoulli-20220823185920_4.csv', 'method=sample', 'algorithm=hmc', 'adapt', 'engaged=1'] -18:59:20 - cmdstanpy - INFO - Chain [4] start processing -18:59:20 - cmdstanpy - INFO - Chain [3] done processing -18:59:20 - cmdstanpy - INFO - Chain [4] done processing -18:59:20 - cmdstanpy - DEBUG - runset +13:30:20 - cmdstanpy - INFO - CmdStan start processing +13:30:20 - cmdstanpy - DEBUG - idx 0 +13:30:20 - cmdstanpy - DEBUG - running CmdStan, num_threads: 1 +13:30:20 - cmdstanpy - DEBUG - CmdStan args: ['/home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/bernoulli', 'id=1', 'random', 'seed=46798', 'data', 'file=users-guide/examples/bernoulli.data.json', 'output', 'file=/tmp/tmpvmhl6e01/bernoulliqddsdaoh/bernoulli-20220825133020_1.csv', 'method=sample', 'algorithm=hmc', 'adapt', 'engaged=1'] +13:30:20 - cmdstanpy - INFO - Chain [1] start processing +13:30:20 - cmdstanpy - DEBUG - idx 1 +13:30:20 - cmdstanpy - DEBUG - running CmdStan, num_threads: 1 +13:30:20 - cmdstanpy - DEBUG - CmdStan args: ['/home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/bernoulli', 'id=2', 'random', 'seed=46798', 'data', 'file=users-guide/examples/bernoulli.data.json', 'output', 'file=/tmp/tmpvmhl6e01/bernoulliqddsdaoh/bernoulli-20220825133020_2.csv', 'method=sample', 'algorithm=hmc', 'adapt', 'engaged=1'] +13:30:20 - cmdstanpy - INFO - Chain [2] start processing +13:30:20 - cmdstanpy - INFO - Chain [1] done processing +13:30:20 - cmdstanpy - DEBUG - idx 2 +13:30:20 - cmdstanpy - DEBUG - running CmdStan, num_threads: 1 +13:30:20 - cmdstanpy - DEBUG - CmdStan args: ['/home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/bernoulli', 'id=3', 'random', 'seed=46798', 'data', 'file=users-guide/examples/bernoulli.data.json', 'output', 'file=/tmp/tmpvmhl6e01/bernoulliqddsdaoh/bernoulli-20220825133020_3.csv', 'method=sample', 'algorithm=hmc', 'adapt', 'engaged=1'] +13:30:20 - cmdstanpy - INFO - Chain [3] start processing +13:30:20 - cmdstanpy - INFO - Chain [2] done processing +13:30:20 - cmdstanpy - DEBUG - idx 3 +13:30:20 - cmdstanpy - DEBUG - running CmdStan, num_threads: 1 +13:30:20 - cmdstanpy - DEBUG - CmdStan args: ['/home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/bernoulli', 'id=4', 'random', 'seed=46798', 'data', 'file=users-guide/examples/bernoulli.data.json', 'output', 'file=/tmp/tmpvmhl6e01/bernoulliqddsdaoh/bernoulli-20220825133020_4.csv', 'method=sample', 'algorithm=hmc', 'adapt', 'engaged=1'] +13:30:20 - cmdstanpy - INFO - Chain [4] start processing +13:30:20 - cmdstanpy - INFO - Chain [3] done processing +13:30:20 - cmdstanpy - INFO - Chain [4] done processing +13:30:20 - cmdstanpy - DEBUG - runset RunSet: chains=4, chain_ids=[1, 2, 3, 4], num_processes=4 cmd (chain 1): -['/home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/bernoulli', 'id=1', 'random', 'seed=11847', 'data', 'file=users-guide/examples/bernoulli.data.json', 'output', 'file=/tmp/tmpcmi54clh/bernoullibaz_rbid/bernoulli-20220823185920_1.csv', 'method=sample', 'algorithm=hmc', 'adapt', 'engaged=1'] +['/home/runner/work/cmdstanpy/cmdstanpy/docsrc/users-guide/examples/bernoulli', 'id=1', 'random', 'seed=46798', 'data', 'file=users-guide/examples/bernoulli.data.json', 'output', 'file=/tmp/tmpvmhl6e01/bernoulliqddsdaoh/bernoulli-20220825133020_1.csv', 'method=sample', 'algorithm=hmc', 'adapt', 'engaged=1'] retcodes=[0, 0, 0, 0] per-chain output files (showing chain 1 only): csv_file: -/tmp/tmpcmi54clh/bernoullibaz_rbid/bernoulli-20220823185920_1.csv +/tmp/tmpvmhl6e01/bernoulliqddsdaoh/bernoulli-20220825133020_1.csv console_msgs (if any): -/tmp/tmpcmi54clh/bernoullibaz_rbid/bernoulli-20220823185920_0-stdout.txt -18:59:20 - cmdstanpy - DEBUG - Chain 1 console: +/tmp/tmpvmhl6e01/bernoulliqddsdaoh/bernoulli-20220825133020_0-stdout.txt +13:30:20 - cmdstanpy - DEBUG - Chain 1 console: method = sample (Default) sample num_samples = 1000 (Default) @@ -463,9 +463,9 @@

    Loggingfile = users-guide/examples/bernoulli.data.json init = 2 (Default) random -seed = 11847 +seed = 46798 output -file = /tmp/tmpcmi54clh/bernoullibaz_rbid/bernoulli-20220823185920_1.csv +file = /tmp/tmpvmhl6e01/bernoulliqddsdaoh/bernoulli-20220825133020_1.csv diagnostic_file = (Default) refresh = 100 (Default) sig_figs = -1 (Default) @@ -473,8 +473,8 @@

    Loggingnum_threads = 1 (Default) -Gradient evaluation took 2e-06 seconds -1000 transitions using 10 leapfrog steps per transition would take 0.02 seconds. +Gradient evaluation took 4e-06 seconds +1000 transitions using 10 leapfrog steps per transition would take 0.04 seconds. Adjust your expectations accordingly! @@ -502,8 +502,8 @@

    LoggingIteration: 2000 / 2000 [100%] (Sampling) Elapsed Time: 0.004 seconds (Warm-up) -0.011 seconds (Sampling) -0.015 seconds (Total) +0.01 seconds (Sampling) +0.014 seconds (Total) diff --git a/docs/users-guide/overview.html b/docs/users-guide/overview.html index 30735402..6960556e 100644 --- a/docs/users-guide/overview.html +++ b/docs/users-guide/overview.html @@ -6,7 +6,7 @@ - Overview — CmdStanPy 1.0.6 documentation + Overview — CmdStanPy 1.0.7 documentation @@ -59,7 +59,7 @@ diff --git a/docs/users-guide/workflow.html b/docs/users-guide/workflow.html index 6d16d21a..f9c27536 100644 --- a/docs/users-guide/workflow.html +++ b/docs/users-guide/workflow.html @@ -6,7 +6,7 @@ - CmdStanPy Workflow — CmdStanPy 1.0.6 documentation + CmdStanPy Workflow — CmdStanPy 1.0.7 documentation @@ -59,7 +59,7 @@