Implementations of transforms between an unconstrained real vector and a point on the simplex for evaluation in the Stan probabilistic programming language.
For basic installation, run
pip install .
To get a Stan model using a transform <transform>
to sample a target <target>
, call
from simplex_transforms.stan import make_stan_code
make_stan_code(<target>, <transform>)
To get a JAX implementation of the same transform, first make sure the optional JAX dependencies have been installed:
pip install .[jax]
Then call
from simplex_transforms.jax.transforms import <transform>
To reproduce all analyses, first install the package in a conda environment named simplex_transforms
pip install .[workflow]
Then, from this directory, run
snakemake --cores all --use-conda
Results will then be stored in results
.