{ "metadata": { "name": "", "signature": "sha256:b32b7339ef0406ec47101c44f8cd1350a5dbc213118cfacc5036edb94c827455" }, "nbformat": 3, "nbformat_minor": 0, "worksheets": [ { "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Machine Learning Summer School, Sydney\n", "\n", "### 23rd February 2015\n", "\n", "### Neil D. Lawrence\n", "\n", "## Introduction\n", "\n", "Welcome to the lab for the Gaussian process section at the Machine Learning Summer School in Sydney.\n", "\n", "This notebook provides you with the guide to your lab classes for Gaussian processes. The lab classes are intended to help get you familiar with modeling with Gaussian processes as\n", "\n", "The lab classes are based on our two software packages, `pods` which is used for access to datasets and `GPy` (release 21st November 2014) for Gaussian processes. You can install the GPy framework with\n", "\n", "```sh\n", "pip install GPy\n", "```\n", "As well as the GPy software we use our `pods` software for ['open data science'](http://inverseprobability.com/2014/07/01/open-data-science/) for access to data sets and other resources.\n", "\n", "```sh\n", "pip install -pre pods\n", "```\n", "\n", "on some systems you may need to use ```pip install -pre pods``` to allow the prerelease to install.\n", "\n", "As well as these lab classes here are a range of tutorials on how to use `GPy`, many of which are written by members of the Sheffield research group. `GPy` is under active development and is released under a BSD license, you'd also be very welcome to contribute!\n", "\n", "\n", "\n", "## Review\n", "\n", "Before you start, if you aren't familiar with probabilistic processes, the following lab classes from the GPRS schools might be useful. The first session will allow you to become familiar with the Jupyter (the ipython notebook) and start to work with Gaussian processes.\n", "\n", "* [Welcome to `Jupyter`](./gprs/jupyter introduction.ipynb) A quick introduction to `Jupyter`, `python` and `numpy`. \n", "* [Introduction to Probabilistic Regression](./gprs/probabilistic interpretations of regression.ipynb) A review of least squares, basis function modelling and the probabilistic interpretation of least squares.\n", "* [Introduction to Bayesian Regression](./gprs/bayesian approach to regression.ipynb) Introducing priors over parameters and averaging over solutions.\n", "\n", "## Gaussian Processes\n", "\n", "The session will focus on Gaussian process models and developing covariance functions. \n", " \n", "* [Introduction to Gaussian Processes](./gaussian process introduction.ipynb) We move from the Bayesian regression with polynomials to Gaussian process perspectives by looking at the priors over the function directly.\n", "* [GPy: Introduction through Covariance Functions](./GPy introduction covariance functions.ipynb) `GPy` is a Python Gaussian process framework that implements many of the ideas we'll see in the course. In this session we introduce its covariance functions and sample from the associated Gaussian processes.\n", "* [Gaussian Process Regression with GPy](./GPy gaussian process regression.ipynb) In this example we show how to do a simple regression model using Gaussian processes in GPy.\n", "* [Optimizing Gaussian Processes](./GPy optimizing gaussian processes.ipynb) The parameters of the covariance function can be optimized. In this example we show how to optimize the parameters of the covariance function. (TODO HMC)\n", "\n", "# Advanced Topics\n", "\n", "Things we haven't had time to cover in the MLSS can be found below.\n", "\n", "### Structured Outputs with Gaussian Processes\n", "\n", "Gaussian processes for learning vector valued functions.\n", "\n", "* [Multiple Output GPs](./gprs/multiple outputs.ipynb)\n", "* [TODO Differential Equations and Gaussian Processes](./gprs/GP differential equation.ipynb)\n", "\n", "\n", "### Approximations\n", "\n", "These examples look at approximations for speeding up inference in Gaussian processes and/or making inference tractable.\n", "\n", "* [Low Rank Approximations for Gaussian Processes](./gprs/low rank approximations.ipynb)\n", "* [Non Gaussian Likelihoods](./gprs/non gaussian likelihoods.ipynb)\n", "* [Low Rank and Non Gaussian](./gprs/low rank and non gaussian.ipynb)\n", "\n", "### Dimensionality Reduction\n", "\n", "These examples look at dimensionality reduction with Gaussian processes.\n", "\n", "* [Dimensionality Reduction with Gaussian Processes](./gprs/dimensionality reduction with gaussian processes.ipynb) " ] }, { "cell_type": "code", "collapsed": false, "input": [], "language": "python", "metadata": {}, "outputs": [] } ], "metadata": {} } ] }