You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.. NOTE FOR MAINTAINERS: This should be updated just before the release action is run, not every PR.
4
+
5
+
What's New
6
+
==========
7
+
8
+
For full changes, see the `Releases page <https://github.com/stan-dev/cmdstanpy/releases>`__ on GitHub.
9
+
10
+
CmdStanPy 1.0.4
11
+
---------------
12
+
13
+
- Fix an issue with :func:`cmdstanpy.install_cmdstan()` where the installation would report that it had failed even when it had not.
14
+
15
+
CmdStanPy 1.0.3
16
+
---------------
17
+
18
+
- Fix an issue where Stan fit objects were not ``pickle``-able when they previously were.
19
+
20
+
.. warning::
21
+
We still do not recommend pickling cmdstanpy objects, but rather using functions :meth:`~CmdStanMCMC.save_csvfiles` and :func:`~cmdstanpy.from_csv`.
22
+
23
+
CmdStanPy 1.0.2
24
+
---------------
25
+
26
+
- CmdStanPy can now format (and canonicalize) your Stan files with :meth:`CmdStanModel.format()`
27
+
- Stan variables can now be accessed from fit objects using the `.` syntax when no naming conflicts occur. For example, previous code ``fit.stan_variable("my_cool_variable")`` can now be written ``fit.my_cool_variable``
28
+
- CmdStanPy is more robust to running in threaded environments and tries harder to not overwrite its own output files
29
+
- The ``install_cmdstan`` script can now be run in interactive mode using ``--interactive``/``-i``
30
+
- CmdStanPy now computes some diagnostics after running HMC and will warn you about post-warmup divergences and treedepth exceptions
31
+
- Runtime exceptions in the ``generated quantities`` block should be recognized better now.
32
+
- The default level of precision used by :meth:`CmdStanMCMC.summary()` is now 6, as it is when ``stansummary`` is used from the command line.\
33
+
- Various documentation improvements
34
+
35
+
36
+
CmdStanPy 1.0.1
37
+
---------------
38
+
39
+
- Support new optimizations in CmdStan 2.29
40
+
- Support complex numbers as both inputs and outputs of Stan programs
41
+
- Sped up assembling output by only reading draws at most once
42
+
- Fixed an issue where a command failing could change your working directory
43
+
- Improve error messages in some cases
44
+
- CmdStanPy no longer changes the global root logging level
45
+
46
+
.. note::
47
+
The minimum supported version for CmdStanPy is now Python 3.7.
Copy file name to clipboardExpand all lines: docsrc/users-guide/examples/MCMC Sampling.ipynb
+2-7Lines changed: 2 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -735,6 +735,8 @@
735
735
"cell_type": "markdown",
736
736
"metadata": {},
737
737
"source": [
738
+
"More information on how to address convergence problems can be found at https://mc-stan.org/misc/warnings\n",
739
+
"\n",
738
740
"The number of post-warmup divergences and iterations which hit the maximum treedepth can be inspected directly via properties `divergences` and `max_treedepths`."
0 commit comments