Skip to main content

A likelihood based on UVPSpec objects

Project description

A small but powerful interface to generate theoretical likelihoods from ``UVPSpec`` objects.

https://github.com/hera-team/pspec_likelihood/workflows/Tests/badge.svg https://codecov.io/gh/hera-team/pspec_likelihood/branch/master/graph/badge.svg https://img.shields.io/badge/code%20style-black-000000.svg pre-commit.ci status

Full Documentation

Read the docs.

Features

  • Ingests data output from hera_pspec: power spectra, covariance matrices and window functions.

  • Agnostic to theory code (i.e. run 21cmFAST or ARES or any other model)

  • Outputs a log-likelihood to be used in parameter inference, but is sampler agnostic.

Installation

Clone/download the repo and pip install ., or pip install git+git://github.com/hera-team/pspec_likelihood.

If developing:

git clone https://github.com/hera-team/pspec_likelihood
cd pspec_likelihood
pip install -e .[dev]
pre-commit install

Quickstart

Import like this:

from pspec_likelihood import DataModelInterface, Gaussian

To construct a likelihood, you first need to construct the DataModelInterface, for which you will specify the data, its covariance, a window function, and a model both for the theory and the systematics. This class contains all the methods required to compute the model/systematics and transform it consistently to data-space.

Secondly, you need to construct a PSpecLikelihood, via one of its concrete sub-classes. Examples of such subclasses are Gaussian and GaussianLinearSystematics. The reason these are their own class, instead of being part of the DataModelInterface, is for the sake of modularity and extensibility. This allows different actual likelihoods to be computed given the data, and new likelihoods to be implemented with ease. The basic requirement of a PSpecLikelihood subclass is that it must implement the loglike(theory_params, sys_params) method, which goes and computes the actual log-likelihood given a set of parameters. It has access to the DataModelInterface object through its model attribute. So, eg.:

likelihood = Gaussian(
    model = DataModelInterface(...)
)

likelihood.loglike(theory_params, sys_params)

Versioning

From v0.1.0, pspec_likelihood will be using strict semantic versioning, such that increases in the major version have potential API breaking changes, minor versions introduce new features, and patch versions fix bugs and other non-breaking internal changes.

If your package depends on pspec_likelihood, set the dependent version like this:

pspec_likelihood>=0.1

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

pspec_likelihood-0.2.0.tar.gz (2.0 MB view hashes)

Uploaded Source

Built Distribution

pspec_likelihood-0.2.0-py2.py3-none-any.whl (88.6 kB view hashes)

Uploaded Python 2 Python 3

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