Skip to main content

Package for implementing Gaussian Process models in python.

Project description

Squidward

After working with gaussian processes (GPs) to build out robust reinforcement learning models in production for most of my early career as a machine learning engineer (MLE), I became frustrated with the packages available for building GPs. They often focus using the latest in optimization tools and are far from the elegant, efficient, and simple design that I believe a GP package should embody.

This is my attempt to create the product that I would want to use. Something simple and flexible that gives knowledgable data scientists the tools they need to do the research or production machine learning work that they need.

I'm open to all feedback, commentary, and suggestions as long as they are constructive and polite.

Authors

James Montgomery - Initial work - jamesmontgomery.us

License

This project is licensed under the MIT License - see the LICENSE.md file for details

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.

Installing

This is a step by step guide to installing squidward for your local environment.

I recommend installing squidward in a virtual environment for organized dependency control. Personally, I prefer conda environments. Create your environment and then go into it.

conda create --name squidward_env python=3.6
source activate squidward_env

To install the latest stable version, simply pip install from pypi!

pip install squidward

However, if you want the latest version git clone this repository to your local environment instead.

git clone https://github.com/looyclark/squidward.git

Change directory (cd) into the root of the squidward repository.

cd ./squidward

Install squidward using pip from the setup file.

pip install .

Basic Examples

I've included basic examples of how to use squidward to get new users started building gaussian process models with this package.

Testing

Testing is an important part of creating maintainable, production grade code.

Running the unit tests

To run the unit tests cd to squidward/squidward so that /tests is a subdirectory.

cd ./squidward/squidward

Use nosetests to run all unit tests for squidward. If you installed squidward in a virtual environment, please run the tests in that same environment.

source activate squidward_env
nosetests

You can also run the tests with coverage to see what code within the package is called in the tests.

nosetests --with-coverage --cover-package=squidward

Running the style tests

I attempt to adhere to the pep8 style guide for the squidward project. To run the style tests cd to the root directory of the repository squidward/ so that /squidward is a subdirectory. Use pylint squidward to run all style tests for squidward.

cd ./ squidward
pylint squidward

Some of the naming conventions I've chosen intentionally do not adhere to pep8 in order to better resemble mathematical conventions. For example, identity matrices may be named I even though this does not adhere to snake case conventions. You can run pylint --disable=invalid-name if you would like to ignore the resulting pylint warnings.

pylint --disable=invalid-name

Acknowledgments

  • A big thanks to Keegan Hines and Josh Touyz who introduced me to Gaussian Processes
  • Many of the methods/implementations in this package are based off of Gaussian Processes for Machine Learning chapters 2 and 3.
  • Many of the native kernels supported by squidward are largely drawn from the kernel cookbook by David Duvenaud.

Alternative Gaussian Process Packages

This is hardly the only gaussian process package out there. Here are a few alternatives in case you dislike this package.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

squidward-0.0.16.tar.gz (12.2 kB view hashes)

Uploaded Source

Built Distribution

squidward-0.0.16-py3-none-any.whl (13.9 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page