Skip to main content

PyMC Extras extracted from the

Project description

PyMC Extras

This library includes various experimental or otherwise special-purpose extras for use with PyMC that have been extracted from the exoplanet project. It's primary components are some helper functions for non-linear optimization and some custom distributions.

Installation

You'll need a Python installation, and it can often be best to install PyMC using conda so that it can handle all the details of compiler setup. This step is optional, but I would normally create a clean conda environment for projects that use PyMC:

# Optional
conda create -n name-of-my-project pymc
conda activate name-of-my-project

The easiest way to install this package is using pip:

python -m pip install -U pymc-ext

This will also update the dependencies like PyMC, which is probably what you want because this is only tested on recent versions of that package.

Optimization

When PyMC added a warning to the pm.find_MAP function, we implemented a custom non-linear optimization framework in exoplanet because it is often useful to be able to optimize (at least) some parameters when initializing the sampler for many problems in astrophysics (and probably elsewhere). While pm.find_MAP no longer complains, the pymc_ext.optimize function is included here for backward compatibility even though it should have similar behavior to pm.find_MAP. To use this function, you'll do something like the following:

import pymc_ext as pmx

with model:
    soln = pmx.optimize(vars=[var1, var2])
    soln = pmx.optimize(start=soln, vars=[var3])

Distributions

Most of the custom distributions in this library are there to make working with periodic parameters (like angles) easier. All of these reparameterizations could be implemented manually without too much trouble, but it can be useful to have them in a more compact form. Here is a list of the included distributions and short descriptions:

  • pmx.unit_disk: Two dimensional parameters constrained to live within the unit disk. This will be useful when you have an angle and a magnitude that must be in the range from zero to one (for example, an eccentricity vector for a bound orbit). This distribution is constrained such that the sum of squares along the zeroth axis will always be less than one. Note that the shape of this distribution must be two in the zeroth axis.
  • pmx.angle: An angle constrained to be in the range -pi to pi. The actual sampling is performed in the two-dimensional vector space (sin(theta), cos(theta)) so that the sampler doesn't see a discontinuity at pi. As a technical detail, the performance of this distribution can be affected using the regularization parameter which helps deal with pathological geometries introduced when this parameter is well/poorly constrained. The default value (10.0) was selected as a reasonable default choice, but you might get better performance by adjusting this.

It's important to note that these are not Distribution objects, but rather functions that will add Distribution objects to the model, and return the reparameterized variable of interest. The ergonomics of this interface are questionable, but it's easier to maintain this interface than one that implements custom Distribution objects.

License

Copyright 2020-2022 Dan Foreman-Mackey and contributors.

pymc-ext is free software made available under the MIT License. For details see the LICENSE file.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pymc_ext-1.0.1rc1.tar.gz (15.3 kB view details)

Uploaded Source

Built Distribution

pymc_ext-1.0.1rc1-py2.py3-none-any.whl (8.5 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file pymc_ext-1.0.1rc1.tar.gz.

File metadata

  • Download URL: pymc_ext-1.0.1rc1.tar.gz
  • Upload date:
  • Size: 15.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.9.18

File hashes

Hashes for pymc_ext-1.0.1rc1.tar.gz
Algorithm Hash digest
SHA256 f6292f9db2a85c41dbe910f66a8f894760b2ce48eb3659000d74d3d4425f486a
MD5 2aab34dee8fb1d3b221eeedce8098d87
BLAKE2b-256 60d0fadd0c2ca8f32f2895ac434e556e2d13d636a39d498a64cea8d8a5e18ac7

See more details on using hashes here.

File details

Details for the file pymc_ext-1.0.1rc1-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for pymc_ext-1.0.1rc1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 d50ee122991a9506142d301e3b6fd7719532f27ebff54fb543e3bd579b2edea1
MD5 5be1cf78d3f01326d2aac96e55ec4923
BLAKE2b-256 7aa87733d1b4920973b351e0733d0ea104a67e7f8fdb813f90a0d2c1b1209495

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page