ModelSamplerEstimator.run#
- ModelSamplerEstimator.run(model)[source]#
Execute the estimation pipeline and return a single-row DataFrame.
- Parameters:
- model
Model PyMC model to evaluate.
- model
- Returns:
pandas.DataFrameSingle-row DataFrame with columns including
num_steps,eval_time_seconds,sequential_chains, and estimated sampling wall-clock time in seconds, minutes, and hours, along with metadata such astune,draws,chains,seed,timestamp, andmodel_name.
Examples
df = ModelSamplerEstimator().run(model) df[ [ "num_steps", "eval_time_seconds", "estimated_sampling_time_minutes", ] ]