pymc-modeling

Installation
SKILL.md

PyMC Modeling

Bayesian modeling workflow for PyMC v5+ with modern API patterns.

Notebook preference: Use marimo for interactive modeling unless the project already uses Jupyter.

Model Specification

Basic Structure

import pymc as pm
import arviz as az

with pm.Model(coords=coords) as model:
    # Data containers (for out-of-sample prediction)
    x = pm.Data("x", x_obs, dims="obs")
Installs
35
GitHub Stars
16
First Seen
Mar 27, 2026
pymc-modeling — pymc-labs/agent-skills