File tree Expand file tree Collapse file tree 3 files changed +5
-18
lines changed
Expand file tree Collapse file tree 3 files changed +5
-18
lines changed Original file line number Diff line number Diff line change 66import shutil
77import tempfile
88
9- _STANSUMMARY_STATS = [
10- 'Mean' ,
11- 'MCSE' ,
12- 'StdDev' ,
13- '5%' ,
14- '50%' ,
15- '95%' ,
16- 'N_Eff' ,
17- 'N_Eff/s' ,
18- 'R_hat' ,
19- ]
20-
219_TMPDIR = tempfile .mkdtemp ()
2210_CMDSTAN_WARMUP = 1000
2311_CMDSTAN_SAMPLING = 1000
@@ -38,20 +26,20 @@ def _cleanup_tmpdir() -> None:
3826
3927from ._version import __version__ # noqa
4028from .install_cmdstan import rebuild_cmdstan
41- from .model import CmdStanModel # noqa
42- from .stanfit import ( # noqa
29+ from .model import CmdStanModel
30+ from .stanfit import (
4331 CmdStanGQ ,
4432 CmdStanMCMC ,
4533 CmdStanMLE ,
4634 CmdStanVB ,
4735 InferenceMetadata ,
4836 from_csv ,
4937)
50- from .utils import set_cmdstan_path # noqa
5138from .utils import (
5239 cmdstan_path ,
5340 cmdstan_version ,
5441 install_cmdstan ,
42+ set_cmdstan_path ,
5543 set_make_env ,
5644 show_versions ,
5745 write_stan_json ,
Original file line number Diff line number Diff line change 11"""
2- Container for the result of running the sample (MCMC) method
3- or generate quantities (GQ) method
2+ Container for the result of running the
3+ generate quantities (GQ) method
44"""
55
66from collections import Counter
Original file line number Diff line number Diff line change 11"""
22Container for the result of running the sample (MCMC) method
3- or generate quantities (GQ) method
43"""
54
65import math
You can’t perform that action at this time.
0 commit comments