Gaussian processes framework in python
Find a file
2014-08-07 10:52:00 -07:00
doc added documentation for parameterized objects, needs more detail and fleshing out with proper english 2014-04-22 19:40:15 +01:00
GPy [parameter core] offset for can be done without parameter slices 2014-08-07 10:52:00 -07:00
.gitignore removed unnecessary gitignore line 2013-06-17 16:59:10 +01:00
.travis.yml Fixing travis multiprocessing issue 2013-06-04 11:52:48 +01:00
AUTHORS.txt added max to authors 2013-05-28 11:11:49 +02:00
LICENSE.txt first commit 2012-11-29 16:24:48 +00:00
MANIFEST.in Added forced extraction of eggs (as we have a fair few non-py files and use the directory structure) added some files to MANIFEST and setup.py's package_data so its included upon distributing 2014-07-29 12:02:47 +01:00
README.md added citation to readme 2014-05-07 11:03:49 +01:00
setup.py returned setup.py read to old version 2014-07-29 22:51:11 +01:00

GPy

A Gaussian processes framework in Python.

Continuous integration status: CI status

Citation

@Misc{gpy2014,
  author =   {The GPy authors},
  title =    {{GPy}: A Gaussian process framework in python},
  howpublished = {\url{http://github.com/SheffieldML/GPy}},
  year = {2012--2014}
}

Getting started

Installing with pip

The simplest way to install GPy is using pip. ubuntu users can do:

sudo apt-get install python-pip
pip install gpy

If you'd like to install from source, or want to contribute to the project (e.g. by sending pull requests via github), read on.

Ubuntu

For the most part, the developers are using ubuntu. To install the required packages:

sudo apt-get install python-numpy python-scipy python-matplotlib

clone this git repository and add it to your path:

git clone git@github.com:SheffieldML/GPy.git ~/SheffieldML
echo 'PYTHONPATH=$PYTHONPATH:~/SheffieldML' >> ~/.bashrc

Windows

On windows, we recommend the anaconda python distribution. We've also had luck with enthought. git clone or unzip the source to a suitable directory, and add an approptiate PYTHONPATH environment variable.

On windows 7 (and possibly earlier versions) there's a bug in scipy version 0.13 which tries to write very long filenames. Reverting to scipy 0.12 seems to do the trick:

conda install scipy=0.12

OSX

Everything appears to work out-of-the box using enthought on osx Mavericks. Download/clone GPy, and then add GPy to your PYTHONPATH

git clone git@github.com:SheffieldML/GPy.git ~/SheffieldML
echo 'PYTHONPATH=$PYTHONPATH:~/SheffieldML' >> ~/.profile

Compiling documentation:

The documentation is stored in doc/ and is compiled with the Sphinx Python documentation generator, and is written in the reStructuredText format.

The Sphinx documentation is available here: http://sphinx-doc.org/latest/contents.html

Installing dependencies:

To compile the documentation, first ensure that Sphinx is installed. On Debian-based systems, this can be achieved as follows:

sudo apt-get install python-pip
sudo pip install sphinx

A LaTeX distribution is also required to compile the equations. Note that the extra packages are necessary to install the unicode packages. To compile the equations to PNG format for use in HTML pages, the package dvipng must be installed. IPython is also required. On Debian-based systems, this can be achieved as follows:

sudo apt-get install texlive texlive-latex-extra texlive-base texlive-recommended
sudo apt-get install dvipng
sudo apt-get install ipython

Compiling documentation:

The documentation can be compiled as follows:

cd doc
make html

The HTML files are then stored in doc/_build/

Running unit tests:

Ensure nose is installed via pip:

pip install nose

Run nosetests from the root directory of the repository:

nosetests -v

Funding Acknowledgements

Current support for the GPy software is coming through the following projects.

Previous support for the GPy software came from the following projects:

  • BBSRC Project No BB/H018123/2 "An iterative pipeline of computational modelling and experimental design for uncovering gene regulatory networks in vertebrates"
  • Erasysbio "SYNERGY: Systems approach to gene regulation biology through nuclear receptors"