GPy/README.md

161 lines
6.6 KiB
Markdown
Raw Normal View History

2014-11-21 17:59:01 +00:00
# GPy
2015-10-12 10:05:59 +01:00
The Gaussian processes framework in Python.
2013-01-29 17:27:29 +00:00
2015-11-12 13:24:03 +00:00
* GPy [homepage](http://sheffieldml.github.io/GPy/)
* Tutorial [notebooks](http://nbviewer.ipython.org/github/SheffieldML/notebook/blob/master/GPy/index.ipynb)
* User [mailing-list](https://lists.shef.ac.uk/sympa/subscribe/gpy-users)
* Developer [documentation](http://pythonhosted.org/GPy/)
2015-11-12 13:24:03 +00:00
* Travis-CI [unit-tests](https://travis-ci.org/SheffieldML/GPy)
2016-04-04 09:44:21 +01:00
* [![licence](https://img.shields.io/badge/licence-BSD-blue.svg)](http://opensource.org/licenses/BSD-3-Clause)
[![develstat](https://travis-ci.org/SheffieldML/GPy.svg?branch=devel)](https://travis-ci.org/SheffieldML/GPy) [![covdevel](http://codecov.io/github/SheffieldML/GPy/coverage.svg?branch=devel)](http://codecov.io/github/SheffieldML/GPy?branch=devel) [![Research software impact](http://depsy.org/api/package/pypi/GPy/badge.svg)](http://depsy.org/package/python/GPy)
2015-10-01 18:07:15 +01:00
## Updated Structure
We have pulled the core parameterization out of GPy. It is a package called [paramz](https://github.com/sods/paramz) and is the pure gradient based model optimization.
If you installed GPy with pip, just upgrade the package using:
$ pip install --upgrade GPy
If you have the developmental version of GPy (using the develop or -e option) just install the dependencies by running
$ python setup.py develop
again, in the GPy installation folder.
2015-11-30 11:03:18 +00:00
A warning: This usually works, but sometimes `distutils/setuptools` opens a
whole can of worms here, specially when compiled extensions are involved.
If that is the case, it is best to clean the repo and reinstall.
2015-10-12 14:28:23 +01:00
## Supported Platforms:
2015-10-01 18:07:15 +01:00
2015-10-12 16:05:04 +01:00
[<img src="https://www.python.org/static/community_logos/python-logo-generic.svg" height=40px>](https://www.python.org/)
2015-10-12 16:05:34 +01:00
[<img src="https://upload.wikimedia.org/wikipedia/commons/5/5f/Windows_logo_-_2012.svg" height=40px>](http://www.microsoft.com/en-gb/windows)
2016-04-04 09:44:21 +01:00
[<img src="https://upload.wikimedia.org/wikipedia/commons/8/8e/OS_X-Logo.svg" height=40px>](http://www.apple.com/osx/)
2015-10-12 16:05:34 +01:00
[<img src="https://upload.wikimedia.org/wikipedia/commons/3/35/Tux.svg" height=40px>](https://en.wikipedia.org/wiki/List_of_Linux_distributions)
2015-10-01 18:07:15 +01:00
Python 2.7, 3.4 and higher
2013-03-12 14:26:07 +00:00
2015-10-12 14:28:23 +01:00
## Citation
2014-05-07 11:03:49 +01:00
@Misc{gpy2014,
2015-09-08 21:00:52 +01:00
author = {{The GPy authors}},
2014-05-07 11:03:49 +01:00
title = {{GPy}: A Gaussian process framework in python},
howpublished = {\url{http://github.com/SheffieldML/GPy}},
2015-09-08 21:00:52 +01:00
year = {2012--2015}
2014-05-07 11:03:49 +01:00
}
2016-04-04 09:44:21 +01:00
### Pronounciation:
2014-11-21 17:59:01 +00:00
2015-10-01 18:07:15 +01:00
We like to pronounce it 'g-pie'.
2016-04-04 09:44:21 +01:00
## Getting started: installing with pip
2016-04-04 09:44:21 +01:00
We are now requiring the newest version (0.16) of
[scipy](http://www.scipy.org/) and thus, we strongly recommend using
2015-09-09 09:22:01 +01:00
the [anaconda python distribution](http://continuum.io/downloads).
With anaconda you can install GPy by the following:
conda update scipy
pip install gpy
2015-10-12 10:05:59 +01:00
We've also had luck with [enthought](http://www.enthought.com). Install scipy 0.16 (or later)
and then pip install GPy:
2015-10-11 19:03:03 +01:00
pip install gpy
If you'd like to install from source, or want to contribute to the project (i.e. by sending pull requests via github), read on.
2015-10-01 18:07:15 +01:00
### Troubleshooting installation problems
2015-03-07 07:35:55 +00:00
2015-10-01 18:07:15 +01:00
If you're having trouble installing GPy via `pip install GPy` here is a probable solution:
2015-03-07 08:42:05 +00:00
2015-10-11 18:57:57 +01:00
git clone https://github.com/SheffieldML/GPy.git
2015-03-07 07:35:55 +00:00
cd GPy
git checkout devel
2015-10-11 18:57:57 +01:00
python setup.py build_ext --inplace
nosetests GPy/testing
2015-03-07 07:35:55 +00:00
2015-10-01 18:07:15 +01:00
### Direct downloads
2014-05-07 11:03:49 +01:00
2015-10-11 19:03:03 +01:00
[![PyPI version](https://badge.fury.io/py/GPy.svg)](https://pypi.python.org/pypi/GPy) [![source](https://img.shields.io/badge/download-source-green.svg)](https://pypi.python.org/pypi/GPy)
[![Windows](https://img.shields.io/badge/download-windows-orange.svg)](https://pypi.python.org/pypi/GPy)
[![MacOSX](https://img.shields.io/badge/download-macosx-blue.svg)](https://pypi.python.org/pypi/GPy)
2015-10-11 19:03:03 +01:00
## Running unit tests:
2013-11-27 13:09:27 +00:00
2015-10-11 19:03:03 +01:00
Ensure nose is installed via pip:
2013-11-27 12:30:19 +00:00
2015-10-11 19:03:03 +01:00
pip install nose
2013-11-27 12:41:47 +00:00
2015-10-11 19:03:03 +01:00
Run nosetests from the root directory of the repository:
2013-11-27 13:02:24 +00:00
2015-10-11 19:03:03 +01:00
nosetests -v GPy/testing
2013-11-27 12:30:19 +00:00
2015-10-11 19:03:03 +01:00
or from within IPython
2013-11-27 13:09:27 +00:00
2015-10-11 19:03:03 +01:00
import GPy; GPy.tests()
2015-09-10 08:38:45 +01:00
2015-10-11 19:03:03 +01:00
or using setuptools
2013-11-27 12:30:19 +00:00
2015-10-11 19:03:03 +01:00
python setup.py test
2016-04-04 09:44:21 +01:00
2015-10-12 14:28:23 +01:00
## Ubuntu hackers
2015-09-10 08:38:45 +01:00
2015-10-11 19:03:03 +01:00
> Note: Right now the Ubuntu package index does not include scipy 0.16.0, and thus, cannot
> be used for GPy. We hope this gets fixed soon.
2015-09-10 08:38:45 +01:00
2015-10-11 19:03:03 +01:00
For the most part, the developers are using ubuntu. To install the required packages:
2015-09-10 08:38:45 +01:00
2015-10-11 19:03:03 +01:00
sudo apt-get install python-numpy python-scipy python-matplotlib
2015-09-10 08:38:45 +01:00
2015-10-11 19:03:03 +01:00
clone this git repository and add it to your path:
2015-09-10 08:38:45 +01:00
2015-10-11 19:03:03 +01:00
git clone git@github.com:SheffieldML/GPy.git ~/SheffieldML
echo 'PYTHONPATH=$PYTHONPATH:~/SheffieldML' >> ~/.bashrc
2013-11-27 12:30:19 +00:00
2015-10-12 14:28:23 +01:00
## Compiling documentation:
2014-11-21 17:59:01 +00:00
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
2015-10-12 14:28:23 +01:00
**Installing dependencies:**
2014-11-21 17:59:01 +00:00
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
2015-10-12 14:28:23 +01:00
**Compiling documentation:**
The documentation can be compiled as follows:
cd doc
2015-10-11 19:03:03 +01:00
sphinx-apidoc -o source/ ../GPy/
make html
2015-10-11 19:03:03 +01:00
The HTML files are then stored in doc/build/html
2014-09-14 10:08:54 -07:00
2014-11-21 17:59:01 +00:00
## Funding Acknowledgements
2014-09-14 10:08:54 -07:00
2016-04-04 09:44:21 +01:00
Current support for the GPy software is coming through the following projects.
2015-10-01 18:07:15 +01:00
* [EU FP7-HEALTH Project Ref 305626](http://radiant-project.eu) "RADIANT: Rapid Development and Distribution of Statistical Tools for High-Throughput Sequencing Data"
* [EU FP7-PEOPLE Project Ref 316861](http://staffwww.dcs.shef.ac.uk/people/N.Lawrence/projects/mlpm/) "MLPM2012: Machine Learning for Personalized Medicine"
* MRC Special Training Fellowship "Bayesian models of expression in the transcriptome for clinical RNA-seq"
* [EU FP7-ICT Project Ref 612139](http://staffwww.dcs.shef.ac.uk/people/N.Lawrence/projects/wysiwyd/) "WYSIWYD: What You Say is What You Did"
Previous support for the GPy software came from the following projects:
2015-10-12 14:28:23 +01:00
- [BBSRC Project No BB/K011197/1](http://staffwww.dcs.shef.ac.uk/people/N.Lawrence/projects/recombinant/) "Linking recombinant gene sequence to protein product manufacturability using CHO cell genomic resources"
- [EU FP7-KBBE Project Ref 289434](http://staffwww.dcs.shef.ac.uk/people/N.Lawrence/projects/biopredyn/) "From Data to Models: New Bioinformatics Methods and Tools for Data-Driven Predictive Dynamic Modelling in Biotechnological Applications"
- [BBSRC Project No BB/H018123/2](http://staffwww.dcs.shef.ac.uk/people/N.Lawrence/projects/iterative/) "An iterative pipeline of computational modelling and experimental design for uncovering gene regulatory networks in vertebrates"
- [Erasysbio](http://staffwww.dcs.shef.ac.uk/people/N.Lawrence/projects/synergy/) "SYNERGY: Systems approach to gene regulation biology through nuclear receptors"