From 5af3cc7c08591e914bb0284353e25c6300235869 Mon Sep 17 00:00:00 2001 From: NicholasCowie Date: Mon, 19 Feb 2024 16:24:10 +0100 Subject: [PATCH] feat: updating cmdstanpy version --- maud/running_stan.py | 2 +- pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/maud/running_stan.py b/maud/running_stan.py index ba0bda86..e6128510 100644 --- a/maud/running_stan.py +++ b/maud/running_stan.py @@ -47,9 +47,9 @@ SIM_CONFIG = { "chains": 1, "fixed_param": True, - "iter_warmup": 0, "show_progress": False, "threads_per_chain": 1, + "adapt_engaged": False, } DEFAULT_OPTIMIZE_CONFIG = { "algorithm": "LBFGS", diff --git a/pyproject.toml b/pyproject.toml index c3afd075..7377a273 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [build-system] -requires = ["setuptools", "cmdstanpy >= 1.0.7", "wheel"] +requires = ["setuptools", "cmdstanpy >= 1.2.1", "wheel"] build-backend = "setuptools.build_meta" [project] @@ -32,7 +32,7 @@ dependencies = [ "pandas", "matplotlib", "toml", - "cmdstanpy >= 1.2.0", + "cmdstanpy >= 1.2.1", "click", "depinfo == 1.7.0", "pydantic >= 2.0",