Skip to content
Snippets Groups Projects

NIFTY - Numerical Information Field Theory

build status coverage report

NIFTY project homepage: http://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 Cython, 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. Thereby, 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 operators that apply to fields.

  • Spaces
    • rg_space - n-dimensional regular Euclidean grid
    • lm_space - spherical harmonics
    • gl_space - Gauss-Legendre grid on the 2-sphere
    • hp_space - HEALPix grid on the 2-sphere
  • Fields
    • field - generic class for (discretized) fields
field.conjugate     field.dim          field.norm
field.dot           field.set_val      field.weight
  • Operators
    • diagonal_operator - purely diagonal matrices in a specified basis
    • projection_operator - projections onto subsets of a specified basis
    • propagator_operator - information propagator in Wiener filter theory
    • (and more)
  • (and more)

Parts of this summary are taken from [1] without marking them explicitly as quotations.

Installation

Requirements

Download

The latest release is tagged v1.0.7 and is available as a source package at . The current version can be obtained by cloning the repository:

git clone https://gitlab.mpcdf.mpg.de/ift/NIFTy.git

Installation on Ubuntu

This is for you if you want to install NIFTy on your personal computer running with an Ubuntu-like linux system were you have root priviledges. Starting with a fresh Ubuntu installation move to a folder like ~/Downloads:

  • Install basic packages like python, python-dev, gsl and others:

    sudo apt-get install curl git autoconf
    sudo apt-get install python-dev python-pip gsl-bin libgsl0-dev libfreetype6-dev libpng-dev libatlas-base-dev
  • Using pip install numpy etc...:

    sudo pip install numpy cython
  • Install pyHealpix:

    git clone https://gitlab.mpcdf.mpg.de/ift/pyHealpix.git
    cd pyHealpix
    autoreconf -i && ./configure && make -j4 && sudo make install
    cd ..
  • Finally, NIFTy:

    git clone https://gitlab.mpcdf.mpg.de/ift/NIFTy.git
    cd nifty
    sudo python setup.py install
    cd ..

Installation on a Linux cluster

This is for you if you want to install NIFTy on a HPC machine or cluster that is hosted by your university or institute. Most of the dependencies will most likely already be there, but you won't have superuser privileges. In this case, instead of:

sudo python setup.py install

use:

python setup.py install --user

or:

python setup.py install --install-lib=/SOMEWHERE

in the instruction above. This will install the python packages into your local user directory.

For pyHealpix, use:

git clone https://gitlab.mpcdf.mpg.de/ift/pyHealpix.git
cd pyHealpix
autoreconf -i && ./configure --prefix=$HOME/.local && make -j4 && make install
cd ..

Installation on OS X 10.11

We advise to install the following packages in the order as they appear below. We strongly recommend to install all needed packages via MacPorts. Please be aware that not all packages are available on MacPorts, missing ones need to be installed manually. It may also be mentioned that one should only use one package manager, as multiple ones may cause trouble.

  • Install basic packages numpy and cython:

    sudo port install py27-numpy
    sudo port install py27-cython
  • Install pyHealpix:

    git clone https://gitlab.mpcdf.mpg.de/ift/pyHealpix.git
    cd pyHealpix
    autoreconf -i && ./configure --prefix=`python-config --prefix` && make -j4 && sudo make install
    cd ..
  • Install NIFTy:

    git clone https://gitlab.mpcdf.mpg.de/ift/NIFTy.git
    cd nifty
    sudo python setup.py install
    cd ..

Installation using pypi

NIFTY can be installed using PyPI and pip by running the following command:

pip install ift_nifty

Alternatively, a private or user specific installation can be done by:

pip install --user ift_nifty

Running the tests

In oder to run the tests one needs two additional packages:

pip install nose
pip install parameterized

Afterwards the tests (including a coverage report) are run using the following command in the repository root:

nosetests --exe --cover-html

First Steps

For a quickstart, you can browse through the informal introduction or dive into NIFTY by running one of the demonstrations, e.g.:

python demos/wiener_filter.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 GPLv3 and is distributed without any warranty.


NIFTY project homepage:

[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