NIFTy - Numerical Information Field Theory
NIFTy project homepage: https://www.mpa-garching.mpg.de/ift/nifty/
Summary
Description
NIFTy, "Numerical Information Field Theory", is a versatile library designed to enable the development of signal inference algorithms that operate regardless of the underlying spatial grid and its resolution. Its object-oriented framework is written in Python, although it accesses libraries written in C++ and C for efficiency.
NIFTy offers a toolkit that abstracts discretized representations of continuous spaces, fields in these spaces, and operators acting on fields into classes. The correct normalization of operations on fields is taken care of automatically without concerning the user. This allows for an abstract formulation and programming of inference algorithms, including those derived within information field theory. Thus, NIFTy permits its user to rapidly prototype algorithms in 1D, and then apply the developed code in higher-dimensional settings of real world problems. The set of spaces on which NIFTy operates comprises point sets, n-dimensional regular grids, spherical spaces, their harmonic counterparts, and product spaces constructed as combinations of those.
Class & Feature Overview
The NIFTy library features three main classes: Spaces that represent certain grids, Fields that are defined on spaces, and LinearOperators that apply to fields.
-
Spaces
-
RGSpace
- n-dimensional regular Euclidean grid -
LMSpace
- spherical harmonics -
GLSpace
- Gauss-Legendre grid on the 2-sphere -
HPSpace
- HEALPix grid on the 2-sphere
-
-
Fields
-
Field
- generic class for (discretized) fields
-
Field.conjugate Field.dim Field.norm
Field.vdot Field.weight
-
Operators
-
DiagonalOperator
- purely diagonal matrices in a specified basis -
FFTOperator
- conversion between spaces and their harmonic counterparts - (and more)
-
- (and more)
Installation
Requirements
Optional dependencies:
Sources
The current version of Nifty4 can be obtained by cloning the repository and switching to the NIFTy_4 branch:
git clone https://gitlab.mpcdf.mpg.de/ift/NIFTy.git
git checkout NIFTy_4
Installation via pip
It is possible to simply install NIFTy with its mandatory dependencies via the command
pip install --user git+https://gitlab.mpcdf.mpg.de/ift/NIFTy.git@NIFTy_4
The optional dependencies can be installed via
pip install --user mpi4py
pip install --user git+https://gitlab.mpcdf.mpg.de/ift/pyHealpix.git
Running the tests
In oder to run the tests one needs two additional packages:
pip install --user nose parameterized
Afterwards the tests (including a coverage report) can be run using the following command in the repository root:
nosetests -x --with-coverage --cover-html --cover-package=nifty4
First Steps
For a quick start, you can browse through the informal introduction or dive into NIFTy by running one of the demonstrations, e.g.:
python demos/wiener_filter_via_curvature.py
Acknowledgement
Please acknowledge the use of NIFTy in your publication(s) by using a phrase such as the following:
"Some of the results in this publication have been derived using the NIFTy package [Selig et al., 2013]."
References
Release Notes
The NIFTy package is licensed under the terms of the GPLv3 and is distributed without any warranty.
[1] Selig et al., "NIFTy - Numerical Information Field Theory - a versatile Python library for signal inference", A&A, vol. 554, id. A26, 2013; arXiv:1301.4499