API Reference

Classes

CmdStanModel

A CmdStanModel object encapsulates the Stan program. It manages program compilation and provides the following inference methods:

sample
runs the HMC-NUTS sampler to produce a set of draws from the posterior distribution.
optimize
produce a penalized maximum likelihood estimate (point estimate) of the model parameters.
variational
run CmdStan’s variational inference algorithm to approximate the posterior distribution.
generate_quantities
runs CmdStan’s generate_quantities method to produce additional quantities of interest based on draws from an existing sample.
class cmdstanpy.CmdStanModel(model_name: str = None, stan_file: str = None, exe_file: str = None, compile: bool = True, stanc_options: Dict = None, cpp_options: Dict = None, logger: logging.Logger = None)[source]

The constructor method allows model instantiation given either the Stan program source file or the compiled executable, or both. By default, the constructor will compile the Stan program on instantiation unless the argument compile=False is specified. The set of constructor arguments are:

Parameters:
  • model_name – Model name, used for output file names. Optional, default is the base filename of the Stan program file.
  • stan_file – Path to Stan program file.
  • exe_file – Path to compiled executable file. Optional, unless no Stan program file is specified. If both the program file and the compiled executable file are specified, the base filenames must match, (but different directory locations are allowed).
  • compile – Whether or not to compile the model. Default is True.
  • stanc_options – Options for stanc compiler, specified as a Python dictionary containing Stanc3 compiler option name, value pairs. Optional.
  • cpp_options – Options for C++ compiler, specified as a Python dictionary containing C++ compiler option name, value pairs. Optional.
code() → str[source]

Return Stan program as a string.

compile(force: bool = False, stanc_options: Dict = None, cpp_options: Dict = None, override_options: bool = False) → None[source]

Compile the given Stan program file. Translates the Stan code to C++, then calls the C++ compiler.

By default, this function compares the timestamps on the source and executable files; if the executable is newer than the source file, it will not recompile the file, unless argument force is True.

Parameters:
  • force – When True, always compile, even if the executable file is newer than the source file. Used for Stan models which have #include directives in order to force recompilation when changes are made to the included files.
  • stanc_options – Options for stanc compiler.
  • cpp_options – Options for C++ compiler.
  • override_options – When True, override existing option. When False, add/replace existing options. Default is False.
generate_quantities(data: Union[Dict, str] = None, mcmc_sample: Union[cmdstanpy.stanfit.CmdStanMCMC, List[str]] = None, seed: int = None, gq_output_dir: str = None, sig_figs: int = None, refresh: int = None) → cmdstanpy.stanfit.CmdStanGQ[source]

Run CmdStan’s generate_quantities method which runs the generated quantities block of a model given an existing sample.

This function takes a CmdStanMCMC object and the dataset used to generate that sample and calls to the CmdStan generate_quantities method to generate additional quantities of interest.

The CmdStanGQ object records the command, the return code, and the paths to the generate method output csv and console files. The output files are written either to a specified output directory or to a temporary directory which is deleted upon session exit.

Output files are either written to a temporary directory or to the specified output directory. Output filenames correspond to the template ‘<model_name>-<YYYYMMDDHHMM>-<chain_id>’ plus the file suffix which is either ‘.csv’ for the CmdStan output or ‘.txt’ for the console messages, e.g. ‘bernoulli-201912081451-1.csv’. Output files written to the temporary directory contain an additional 8-character random string, e.g. ‘bernoulli-201912081451-1-5nm6as7u.csv’.

Parameters:
  • data – Values for all data variables in the model, specified either as a dictionary with entries matching the data variables, or as the path of a data file in JSON or Rdump format.
  • mcmc_sample – Can be either a CmdStanMCMC object returned by the sample method or a list of stan-csv files generated by fitting the model to the data using any Stan interface.
  • seed – The seed for random number generator. Must be an integer between 0 and 2^32 - 1. If unspecified, numpy.random.RandomState() is used to generate a seed which will be used for all chains. NOTE: Specifying the seed will guarantee the same result for multiple invocations of this method with the same inputs. However this will not reproduce results from the sample method given the same inputs because the RNG will be in a different state.
  • gq_output_dir – Name of the directory in which the CmdStan output files are saved. If unspecified, files will be written to a temporary directory which is deleted upon session exit.
  • sig_figs – Numerical precision used for output CSV and text files. Must be an integer between 1 and 18. If unspecified, the default precision for the system file I/O is used; the usual value is 6. Introduced in CmdStan-2.25.
  • refresh – Specify the number of iterations cmdstan will take between progress messages. Default value is 100.
Returns:

CmdStanGQ object

optimize(data: Union[Dict, str] = None, seed: int = None, inits: Union[Dict, float, str] = None, output_dir: str = None, sig_figs: int = None, save_profile: bool = False, algorithm: str = None, init_alpha: float = None, iter: int = None, refresh: int = None) → cmdstanpy.stanfit.CmdStanMLE[source]

Run the specified CmdStan optimize algorithm to produce a penalized maximum likelihood estimate of the model parameters.

This function validates the specified configuration, composes a call to the CmdStan optimize method and spawns one subprocess to run the optimizer and waits for it to run to completion. Unspecified arguments are not included in the call to CmdStan, i.e., those arguments will have CmdStan default values.

The CmdStanMLE object records the command, the return code, and the paths to the optimize method output csv and console files. The output files are written either to a specified output directory or to a temporary directory which is deleted upon session exit.

Output files are either written to a temporary directory or to the specified output directory. Ouput filenames correspond to the template ‘<model_name>-<YYYYMMDDHHMM>-<chain_id>’ plus the file suffix which is either ‘.csv’ for the CmdStan output or ‘.txt’ for the console messages, e.g. ‘bernoulli-201912081451-1.csv’. Output files written to the temporary directory contain an additional 8-character random string, e.g. ‘bernoulli-201912081451-1-5nm6as7u.csv’.

Parameters:
  • data – Values for all data variables in the model, specified either as a dictionary with entries matching the data variables, or as the path of a data file in JSON or Rdump format.
  • seed – The seed for random number generator. Must be an integer between 0 and 2^32 - 1. If unspecified, numpy.random.RandomState() is used to generate a seed.
  • inits

    Specifies how the sampler initializes parameter values. Initialization is either uniform random on a range centered on 0, exactly 0, or a dictionary or file of initial values for some or all parameters in the model. The default initialization behavior will initialize all parameter values on range [-2, 2] on the unconstrained support. If the expected parameter values are too far from this range, this option may improve estimation. The following value types are allowed:

    • Single number, n > 0 - initialization range is [-n, n].
    • 0 - all parameters are initialized to 0.
    • dictionary - pairs parameter name : initial value.
    • string - pathname to a JSON or Rdump data file.
  • output_dir – Name of the directory to which CmdStan output files are written. If unspecified, output files will be written to a temporary directory which is deleted upon session exit.
  • sig_figs – Numerical precision used for output CSV and text files. Must be an integer between 1 and 18. If unspecified, the default precision for the system file I/O is used; the usual value is 6. Introduced in CmdStan-2.25.
  • save_profile – Whether or not to profile auto-diff operations in labelled blocks of code. If True, csv outputs are written to a file ‘<model_name>-<YYYYMMDDHHMM>-profile-<chain_id>’. Introduced in CmdStan-2.26.
  • algorithm – Algorithm to use. One of: ‘BFGS’, ‘LBFGS’, ‘Newton’
  • init_alpha – Line search step size for first iteration
  • iter – Total number of iterations
  • refresh – Specify the number of iterations cmdstan will take

between progress messages. Default value is 100.

Returns:CmdStanMLE object
sample(data: Union[Dict, str] = None, chains: Optional[int] = None, parallel_chains: Optional[int] = None, threads_per_chain: Optional[int] = None, seed: Union[int, List[int]] = None, chain_ids: Union[int, List[int]] = None, inits: Union[Dict, float, str, List[str]] = None, iter_warmup: int = None, iter_sampling: int = None, save_warmup: bool = False, thin: int = None, max_treedepth: float = None, metric: Union[str, List[str]] = None, step_size: Union[float, List[float]] = None, adapt_engaged: bool = True, adapt_delta: float = None, adapt_init_phase: int = None, adapt_metric_window: int = None, adapt_step_size: int = None, fixed_param: bool = False, output_dir: str = None, sig_figs: int = None, save_diagnostics: bool = False, save_profile: bool = False, show_progress: Union[bool, str] = False, validate_csv: bool = True, refresh: int = None) → cmdstanpy.stanfit.CmdStanMCMC[source]

Run or more chains of the NUTS sampler to produce a set of draws from the posterior distribution of a model conditioned on some data.

This function validates the specified configuration, composes a call to the CmdStan sample method and spawns one subprocess per chain to run the sampler and waits for all chains to run to completion. Unspecified arguments are not included in the call to CmdStan, i.e., those arguments will have CmdStan default values.

For each chain, the CmdStanMCMC object records the command, the return code, the sampler output file paths, and the corresponding console outputs, if any. The output files are written either to a specified output directory or to a temporary directory which is deleted upon session exit.

Output files are either written to a temporary directory or to the specified output directory. Ouput filenames correspond to the template ‘<model_name>-<YYYYMMDDHHMM>-<chain_id>’ plus the file suffix which is either ‘.csv’ for the CmdStan output or ‘.txt’ for the console messages, e.g. ‘bernoulli-201912081451-1.csv’. Output files written to the temporary directory contain an additional 8-character random string, e.g. ‘bernoulli-201912081451-1-5nm6as7u.csv’.

Parameters:
  • data – Values for all data variables in the model, specified either as a dictionary with entries matching the data variables, or as the path of a data file in JSON or Rdump format.
  • chains – Number of sampler chains, must be a positive integer.
  • parallel_chains – Number of processes to run in parallel. Must be a positive integer. Defaults to multiprocessing.cpu_count().
  • threads_per_chain – The number of threads to use in parallelized sections within an MCMC chain (e.g., when using the Stan functions reduce_sum() or map_rect()). This will only have an effect if the model was compiled with threading support. The total number of threads used will be parallel_chains * threads_per_chain.
  • seed – The seed for random number generator. Must be an integer between 0 and 2^32 - 1. If unspecified, numpy.random.RandomState() is used to generate a seed which will be used for all chains. When the same seed is used across all chains, the chain-id is used to advance the RNG to avoid dependent samples.
  • chain_ids – The offset for the random number generator, either an integer or a list of unique per-chain offsets. If unspecified, chain ids are numbered sequentially starting from 1.
  • inits

    Specifies how the sampler initializes parameter values. Initialization is either uniform random on a range centered on 0, exactly 0, or a dictionary or file of initial values for some or all parameters in the model. The default initialization behavior will initialize all parameter values on range [-2, 2] on the unconstrained support. If the expected parameter values are too far from this range, this option may improve adaptation. The following value types are allowed:

    • Single number n > 0 - initialization range is [-n, n].
    • 0 - all parameters are initialized to 0.
    • dictionary - pairs parameter name : initial value.
    • string - pathname to a JSON or Rdump data file.
    • list of strings - per-chain pathname to data file.
  • iter_warmup – Number of warmup iterations for each chain.
  • iter_sampling – Number of draws from the posterior for each chain.
  • save_warmup – When True, sampler saves warmup draws as part of the Stan csv output file.
  • thin – Period between recorded iterations. Default is 1, i.e., all iterations are recorded.
  • max_treedepth – Maximum depth of trees evaluated by NUTS sampler per iteration.
  • metric

    Specification of the mass matrix, either as a vector consisting of the diagonal elements of the covariance matrix (‘diag’ or ‘diag_e’) or the full covariance matrix (‘dense’ or ‘dense_e’).

    If the value of the metric argument is a string other than ‘diag’, ‘diag_e’, ‘dense’, or ‘dense_e’, it must be a valid filepath to a JSON or Rdump file which contains an entry ‘inv_metric’ whose value is either the diagonal vector or the full covariance matrix.

    If the value of the metric argument is a list of paths, its length must match the number of chains and all paths must be unique.

  • step_size – Initial step size for HMC sampler. The value is either a single number or a list of numbers which will be used as the global or per-chain initial step size, respectively. The length of the list of step sizes must match the number of chains.
  • adapt_engaged – When True, adapt step size and metric.
  • adapt_delta – Adaptation target Metropolis acceptance rate. The default value is 0.8. Increasing this value, which must be strictly less than 1, causes adaptation to use smaller step sizes which improves the effective sample size, but may increase the time per iteration.
  • adapt_init_phase – Iterations for initial phase of adaptation during which step size is adjusted so that the chain converges towards the typical set.
  • adapt_metric_window – The second phase of adaptation tunes the metric and step size in a series of intervals. This parameter specifies the number of iterations used for the first tuning interval; window size increases for each subsequent interval.
  • adapt_step_size – Number of iterations given over to adjusting the step size given the tuned metric during the final phase of adaptation.
  • fixed_param – When True, call CmdStan with argument algorithm=fixed_param which runs the sampler without updating the Markov Chain, thus the values of all parameters and transformed parameters are constant across all draws and only those values in the generated quantities block that are produced by RNG functions may change. This provides a way to use Stan programs to generate simulated data via the generated quantities block. This option must be used when the parameters block is empty. Default value is False.
  • output_dir – Name of the directory to which CmdStan output files are written. If unspecified, output files will be written to a temporary directory which is deleted upon session exit.
  • sig_figs – Numerical precision used for output CSV and text files. Must be an integer between 1 and 18. If unspecified, the default precision for the system file I/O is used; the usual value is 6. Introduced in CmdStan-2.25.
  • save_diagnostics – Whether or not to output the position and momentum information for each parameter. If True, csv outputs are written to an output file using filename template ‘<model_name>-<YYYYMMDDHHMM>-diagnostic-<chain_id>’, e.g. ‘bernoulli-201912081451-diagnostic-1.csv’.
  • save_profile – Whether or not to profile auto-diff operations in labelled blocks of code. If True, csv outputs are written to a file ‘<model_name>-<YYYYMMDDHHMM>-profile-<chain_id>’. Introduced in CmdStan-2.26.
  • show_progress – Use tqdm progress bar to show sampling progress. If show_progress==’notebook’ use tqdm_notebook (needs nodejs for jupyter).
  • validate_csv – If False, skip scan of sample csv output file. When sample is large or disk i/o is slow, will speed up processing. Default is True - sample csv files are scanned for completeness and consistency.
  • refresh – Specify the number of iterations cmdstan will take

between progress messages. Default value is 100.

Returns:CmdStanMCMC object
variational(data: Union[Dict, str] = None, seed: int = None, inits: float = None, output_dir: str = None, sig_figs: int = None, save_diagnostics: bool = False, save_profile: bool = False, algorithm: str = None, iter: int = None, grad_samples: int = None, elbo_samples: int = None, eta: numbers.Real = None, adapt_engaged: bool = True, adapt_iter: int = None, tol_rel_obj: numbers.Real = None, eval_elbo: int = None, output_samples: int = None, require_converged: bool = True, refresh: int = None) → cmdstanpy.stanfit.CmdStanVB[source]

Run CmdStan’s variational inference algorithm to approximate the posterior distribution of the model conditioned on the data.

This function validates the specified configuration, composes a call to the CmdStan variational method and spawns one subprocess to run the optimizer and waits for it to run to completion. Unspecified arguments are not included in the call to CmdStan, i.e., those arguments will have CmdStan default values.

The CmdStanVB object records the command, the return code, and the paths to the variational method output csv and console files. The output files are written either to a specified output directory or to a temporary directory which is deleted upon session exit.

Output files are either written to a temporary directory or to the specified output directory. Output filenames correspond to the template ‘<model_name>-<YYYYMMDDHHMM>-<chain_id>’ plus the file suffix which is either ‘.csv’ for the CmdStan output or ‘.txt’ for the console messages, e.g. ‘bernoulli-201912081451-1.csv’. Output files written to the temporary directory contain an additional 8-character random string, e.g. ‘bernoulli-201912081451-1-5nm6as7u.csv’.

Parameters:
  • data – Values for all data variables in the model, specified either as a dictionary with entries matching the data variables, or as the path of a data file in JSON or Rdump format.
  • seed – The seed for random number generator. Must be an integer between 0 and 2^32 - 1. If unspecified, numpy.random.RandomState() is used to generate a seed which will be used for all chains.
  • inits – Specifies how the sampler initializes parameter values. Initialization is uniform random on a range centered on 0 with default range of 2. Specifying a single number n > 0 changes the initialization range to [-n, n].
  • output_dir – Name of the directory to which CmdStan output files are written. If unspecified, output files will be written to a temporary directory which is deleted upon session exit.
  • sig_figs – Numerical precision used for output CSV and text files. Must be an integer between 1 and 18. If unspecified, the default precision for the system file I/O is used; the usual value is 6. Introduced in CmdStan-2.25.
  • save_diagnostics – Whether or not to save diagnostics. If True, csv outputs are written to an output file using filename template ‘<model_name>-<YYYYMMDDHHMM>-diagnostic-<chain_id>’, e.g. ‘bernoulli-201912081451-diagnostic-1.csv’.
  • save_profile – Whether or not to profile auto-diff operations in labelled blocks of code. If True, csv outputs are written to a file ‘<model_name>-<YYYYMMDDHHMM>-profile-<chain_id>’. Introduced in CmdStan-2.26.
  • algorithm – Algorithm to use. One of: ‘meanfield’, ‘fullrank’.
  • iter – Maximum number of ADVI iterations.
  • grad_samples – Number of MC draws for computing the gradient.
  • elbo_samples – Number of MC draws for estimate of ELBO.
  • eta – Step size scaling parameter.
  • adapt_engaged – Whether eta adaptation is engaged.
  • adapt_iter – Number of iterations for eta adaptation.
  • tol_rel_obj – Relative tolerance parameter for convergence.
  • eval_elbo – Number of iterations between ELBO evaluations.
  • output_samples – Number of approximate posterior output draws to save.
  • require_converged – Whether or not to raise an error if stan reports that “The algorithm may not have converged”.
  • refresh – Specify the number of iterations cmdstan will take between progress messages. Default value is 100.
Returns:

CmdStanVB object

cpp_options

Options to C++ compilers.

exe_file

Full path to Stan exe file.

name

Model name used in output filename templates. Default is basename of Stan program or exe file, unless specified in call to constructor via argument model_name.

stan_file

Full path to Stan program file.

stanc_options

Options to stanc compilers.

CmdStanMCMC

class cmdstanpy.CmdStanMCMC(runset: cmdstanpy.stanfit.RunSet, validate_csv: bool = True, logger: logging.Logger = None)[source]

Container for outputs from CmdStan sampler run. Provides methods to summarize and diagnose the model fit and accessor methods to access the entire sample or individual items.

The sample is lazily instantiated on first access of either the resulting sample or the HMC tuning parameters, i.e., the step size and metric. The sample can treated either as a 2D or 3D array; the former flattens all chains into a single dimension.

diagnose() → str[source]

Run cmdstan/bin/diagnose over all output csv files. Returns output of diagnose (stdout/stderr).

The diagnose utility reads the outputs of all chains and checks for the following potential problems:

  • Transitions that hit the maximum treedepth
  • Divergent transitions
  • Low E-BFMI values (sampler transitions HMC potential energy)
  • Low effective sample sizes
  • High R-hat values
draws(*, inc_warmup: bool = False, concat_chains: bool = False) → numpy.ndarray[source]

Returns a numpy.ndarray over all draws from all chains which is stored column major so that the values for a parameter are contiguous in memory, likewise all draws from a chain are contiguous. By default, returns a 3D array arranged (draws, chains, columns); parameter concat_chains=True will return a 2D array where all chains are flattened into a single column, although underlyingly, given M chains of N draws, the first N draws are from chain 1, up through the last N draws from chain M.

Parameters:
  • inc_warmup – When True and the warmup draws are present in the output, i.e., the sampler was run with save_warmup=True, then the warmup draws are included. Default value is False.
  • concat_chains – When True return a 2D array flattening all all draws from all chains. Default value is False.
draws_pd(params: List[str] = None, inc_warmup: bool = False) → pandas.core.frame.DataFrame[source]

Returns the sampler draws as a pandas DataFrame. Flattens all chains into single column.

Parameters:
  • params – optional list of variable names.
  • inc_warmup – When True and the warmup draws are present in the output, i.e., the sampler was run with save_warmup=True, then the warmup draws are included. Default value is False.
sampler_variables() → Dict[source]

Returns a dictionary of all sampler variables, i.e., all output column names ending in __. Assumes that all variables are scalar variables where column name is variable name. Maps each column name to a numpy.ndarray (draws x chains x 1) containing per-draw diagnostic values.

save_csvfiles(dir: str = None) → None[source]

Move output csvfiles to specified directory. If files were written to the temporary session directory, clean filename. E.g., save ‘bernoulli-201912081451-1-5nm6as7u.csv’ as ‘bernoulli-201912081451-1.csv’.

Parameters:dir – directory path
stan_variable(name: str, inc_warmup: bool = False) → numpy.ndarray[source]

Return a numpy.ndarray which contains the set of draws for the named Stan program variable. Flattens the chains, leaving the draws in chain order. The first array dimension, corresponds to number of draws or post-warmup draws in the sample, per argument inc_warmup. The remaining dimensions correspond to the shape of the Stan program variable.

Underlyingly draws are in chain order, i.e., for a sample with N chains of M draws each, the first M array elements are from chain 1, the next M are from chain 2, and the last M elements are from chain N.

  • If the variable is a scalar variable, the return array has shape ( draws X chains, 1).
  • If the variable is a vector, the return array has shape ( draws X chains, len(vector))
  • If the variable is a matrix, the return array has shape ( draws X chains, size(dim 1) X size(dim 2) )
  • If the variable is an array with N dimensions, the return array has shape ( draws X chains, size(dim 1) X … X size(dim N))

For example, if the Stan program variable theta is a 3x3 matrix, and the sample consists of 4 chains with 1000 post-warmup draws, this function will return a numpy.ndarray with shape (4000,3,3).

Parameters:
  • name – variable name
  • inc_warmup – When True and the warmup draws are present in the output, i.e., the sampler was run with save_warmup=True, then the warmup draws are included. Default value is False.
stan_variables() → Dict[source]

Return a dictionary of all Stan program variables.

summary(percentiles: List[int] = None, sig_figs: int = None) → pandas.core.frame.DataFrame[source]

Run cmdstan/bin/stansummary over all output csv files, assemble summary into DataFrame object; first row contains summary statistics for total joint log probability lp__, remaining rows contain summary statistics for all parameters, transformed parameters, and generated quantities variables listed in the order in which they were declared in the Stan program.

Parameters:
  • percentiles – Ordered non-empty list of percentiles to report. Must be integers from (1, 99), inclusive.
  • sig_figs – Number of significant figures to report. Must be an integer between 1 and 18. If unspecified, the default precision for the system file I/O is used; the usual value is 6. If precision above 6 is requested, sample must have been produced by CmdStan version 2.25 or later and sampler output precision must equal to or greater than the requested summary precision.
Returns:

pandas.DataFrame

validate_csv_files() → None[source]

Checks that csv output files for all chains are consistent. Populates attributes for metadata, draws, metric, step size. Raises exception when inconsistencies detected.

chain_ids

Chain ids.

chains

Number of chains.

column_names

Names of all outputs from the sampler, comprising sampler parameters and all components of all model parameters, transformed parameters, and quantities of interest. Corresponds to Stan CSV file header row, with names munged to array notation, e.g. beta[1] not beta.1.

metric

Metric used by sampler for each chain. When sampler algorithm ‘fixed_param’ is specified, metric is None.

metric_type

Metric type used for adaptation, either ‘diag_e’ or ‘dense_e’. When sampler algorithm ‘fixed_param’ is specified, metric_type is None.

num_draws_sampling

Number of sampling (post-warmup) draws per chain, i.e., thinned sampling iterations.

num_draws_warmup

Number of warmup draws per chain, i.e., thinned warmup iterations.

num_unconstrained_params

Count of _unconstrained_ model parameters. This is the metric size; for metric diag_e, the length of the diagonal vector, for metric dense_e this is the size of the full covariance matrix.

If the parameter variables in a model are constrained parameter types, the number of constrained and unconstrained parameters may differ. The sampler reports the constrained parameters and computes with the unconstrained parameters. E.g. a model with 2 parameter variables, real alpha and vector[3] beta has 4 constrained and 4 unconstrained parameters, however a model with variables real alpha and simplex[3] beta has 4 constrained and 3 unconstrained parameters.

sample

Deprecated - use method “draws()” instead.

sampler_config

Returns dict of CmdStan configuration arguments.

sampler_vars_cols

Returns map from sampler variable names to column indices.

stan_vars_cols

Returns map from Stan program variable names to column indices.

stan_vars_dims

Returns map from Stan program variable names to variable dimensions. Scalar types are mapped to the empty tuple, e.g., program variable int foo has dimesion () and program variable vector[10] bar has dimension (10,).

step_size

Step size used by sampler for each chain. When sampler algorithm ‘fixed_param’ is specified, step size is None.

thin

Period between recorded iterations. (Default is 1).

warmup

Deprecated - use “draws(inc_warmup=True)”

CmdStanMLE

class cmdstanpy.CmdStanMLE(runset: cmdstanpy.stanfit.RunSet)[source]

Container for outputs from CmdStan optimization.

save_csvfiles(dir: str = None) → None[source]

Move output csvfiles to specified directory. If files were written to the temporary session directory, clean filename. E.g., save ‘bernoulli-201912081451-1-5nm6as7u.csv’ as ‘bernoulli-201912081451-1.csv’.

Parameters:dir – directory path
column_names

Names of estimated quantities, includes joint log probability, and all parameters, transformed parameters, and generated quantitites.

optimized_params_dict

Returns optimized params as Dict.

optimized_params_np

Returns optimized params as numpy array.

optimized_params_pd

Returns optimized params as pandas DataFrame.

CmdStanGQ

class cmdstanpy.CmdStanGQ(runset: cmdstanpy.stanfit.RunSet, mcmc_sample: pandas.core.frame.DataFrame)[source]

Container for outputs from CmdStan generate_quantities run.

save_csvfiles(dir: str = None) → None[source]

Move output csvfiles to specified directory. If files were written to the temporary session directory, clean filename. E.g., save ‘bernoulli-201912081451-1-5nm6as7u.csv’ as ‘bernoulli-201912081451-1.csv’.

Parameters:dir – directory path
chains

Number of chains.

column_names

Names of generated quantities of interest.

generated_quantities

A 2D numpy ndarray which contains generated quantities draws for all chains where the columns correspond to the generated quantities block variables and the rows correspond to the draws from all chains, where first M draws are the first M draws of chain 1 and the last M draws are the last M draws of chain N, i.e., flattened chain, draw ordering.

generated_quantities_pd

Returns the generated quantities as a pandas DataFrame consisting of one column per quantity of interest and one row per draw.

sample_plus_quantities

Returns the column-wise concatenation of the input drawset with generated quantities drawset. If there are duplicate columns in both the input and the generated quantities, the input column is dropped in favor of the recomputed values in the generate quantities drawset.

CmdStanVB

class cmdstanpy.CmdStanVB(runset: cmdstanpy.stanfit.RunSet)[source]

Container for outputs from CmdStan variational run.

save_csvfiles(dir: str = None) → None[source]

Move output csvfiles to specified directory. If files were written to the temporary session directory, clean filename. E.g., save ‘bernoulli-201912081451-1-5nm6as7u.csv’ as ‘bernoulli-201912081451-1.csv’.

Parameters:dir – directory path
column_names

Names of information items returned by sampler for each draw. Includes approximation information and names of model parameters and computed quantities.

columns

Total number of information items returned by sampler. Includes approximation information and names of model parameters and computed quantities.

variational_params_dict

Returns inferred parameter means as Dict.

variational_params_np

Returns inferred parameter means as numpy array.

variational_params_pd

Returns inferred parameter means as pandas DataFrame.

variational_sample

Returns the set of approximate posterior output draws.

RunSet

class cmdstanpy.stanfit.RunSet(args: cmdstanpy.cmdstan_args.CmdStanArgs, chains: int = 4, chain_ids: List[int] = None, logger: logging.Logger = None)[source]

Encapsulates the configuration and results of a call to any CmdStan inference method. Records the sampler return code and locations of all console, error, and output files.

get_err_msgs() → List[str][source]

Checks console messages for each chain.

save_csvfiles(dir: str = None) → None[source]

Moves csvfiles to specified directory.

Parameters:dir – directory path
chain_ids

Chain ids.

chains

Number of chains.

cmds

List of call(s) to CmdStan, one call per-chain.

csv_files

List of paths to CmdStan output files.

diagnostic_files

List of paths to CmdStan hamiltonian diagnostic files.

method

CmdStan method used to generate this fit.

model

Stan model name.

profile_files

List of paths to CmdStan profiler files.

stderr_files

List of paths to CmdStan stderr transcripts.

stdout_files

List of paths to CmdStan stdout transcripts.

Functions

cmdstan_path

cmdstanpy.cmdstan_path() → str[source]

Validate, then return CmdStan directory path.

install_cmstan

cmdstanpy.install_cmdstan(version: str = None, dir: str = None, overwrite: bool = False, verbose: bool = False) → bool[source]

Download and install a CmdStan release from GitHub by running script install_cmdstan as a subprocess. Downloads the release tar.gz file to temporary storage. Retries GitHub requests in order to allow for transient network outages. Builds CmdStan executables and tests the compiler by building example model bernoulli.stan.

Parameters:
  • version – CmdStan version string, e.g. “2.24.1”. Defaults to latest CmdStan release.
  • dir – Path to install directory. Defaults to hidden directory $HOME/.cmdstan or $HOME/.cmdstanpy, if the latter exists. If no directory is specified and neither of the above directories exist, directory $HOME/.cmdstan will be created and populated.
  • overwrite – Boolean value; when True, will overwrite and rebuild an existing CmdStan installation. Default is False.
  • verbose – Boolean value; when True, output from CmdStan build processes will be streamed to the console. Default is False.
Returns:

Boolean value; True for success.

set_cmdstan_path

cmdstanpy.set_cmdstan_path(path: str) → None[source]

Validate, then set CmdStan directory path.

set_make_env

cmdstanpy.set_make_env(make: str) → None[source]

set MAKE environmental variable.