From c811679f786ec7b82e06b8baf5cfd18c893c5c98 Mon Sep 17 00:00:00 2001 From: Jean Van Dyk Date: Wed, 14 May 2025 01:14:01 +0200 Subject: [PATCH] Updated pymc.model.transform.conditioning.do docstring --- pymc/model/transform/conditioning.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pymc/model/transform/conditioning.py b/pymc/model/transform/conditioning.py index edcf5862b..863b6caaf 100644 --- a/pymc/model/transform/conditioning.py +++ b/pymc/model/transform/conditioning.py @@ -139,14 +139,14 @@ def do( Parameters ---------- - model: PyMC Model - vars_to_interventions: Dict of variable or name to TensorLike + model : PyMC Model + vars_to_interventions : Dict of variable or name to TensorLike Dictionary that maps model variables (or names) to intervention expressions. Intervention expressions must have a shape and data type that is compatible with the original model variable. - make_interventions_shared: bool, defaults to True, + make_interventions_shared : bool, defaults to True, Whether to make constant interventions shared variables. - prune_vars: bool, defaults to False + prune_vars : bool, defaults to False Whether to prune model variables that are not connected to any observed variables, after the interventions.