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 squidward

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. First, let's create and open our environment.

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

Using the MKL backend for numpy can help increase the performance of this code. Anaconda now comes with mkl by default. To make use of mkl simply set up your virtual environment with anaconda like below.

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

To install the most recent stable version, simply pip install from pypi! Squidward is installed and ready to use.

pip install squidward

If you want the latest (not necessarily stable) version, git clone this repository to your local environment instead. To run unit and style tests you will need to clone this repository as tests are not included with the pypi installed package.

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

Change directory (cd) into the root of the squidward repository. Updates staged for the next stable release will be in the master branch and experimental updates will be in branches ending in the suffix "_dev".

cd ./squidward

Install squidward using pip from the setup file.

pip install .

When you are finished using squidward you can either deactivate you conda environment for later use or remove it completely.

source deactivate
conda env remove -n squidward_env

Examples / Tutorials

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

Many of these examples include visualizations of data and GP models. Running these examples locally will require the visualization packages below:

pip install "matplotlib>=2.2.3' "seaborn>=0.9.0"

Examples and Tutorials can be found on the squidward docs site

Testing

Testing is an important part of creating maintainable, production grade code. Below are instructions for running unit and style tests as well as installing the necessary testing packages. Tests have intentionally been separated from the installable pypi package for a variety of reasons.

Install required packages

These packages are required to run unit and style tests for squidward.

pip install "nose>=1.3.7" "coverage==4.0.0" "pylint>=1.8.2"

Running unit tests

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

cd ./squidward/tests

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 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, I often borrow the matrix naming conventions of Rassmussen such as K and K_ss. You can run pylint --disable=invalid-name if you would like to ignore the resulting pylint warnings.

pylint squidward --disable=invalid-name

Acknowledgments

A big thanks to Keegan Hines and Josh Touyz who introduced me to Gaussian Processes. Additionally, a big thanks to Jason Wittenbach and Mack Sweeney who have helped guide me along my journey implementing Bayesian models from scratch.

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.25.tar.gz (14.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

squidward-0.0.25-py3-none-any.whl (16.9 kB view details)

Uploaded Python 3

File details

Details for the file squidward-0.0.25.tar.gz.

File metadata

  • Download URL: squidward-0.0.25.tar.gz
  • Upload date:
  • Size: 14.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.0

File hashes

Hashes for squidward-0.0.25.tar.gz
Algorithm Hash digest
SHA256 115dd095d10fd6170d618288f58521aafe9dd11debaa54465be92725404e5e32
MD5 11215815882b9572a706121fad9b3d24
BLAKE2b-256 66ffd232fbe3f30b08e473ffb2fa19693f511d7c7a209bd8fef468a71677cbb8

See more details on using hashes here.

File details

Details for the file squidward-0.0.25-py3-none-any.whl.

File metadata

  • Download URL: squidward-0.0.25-py3-none-any.whl
  • Upload date:
  • Size: 16.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.0

File hashes

Hashes for squidward-0.0.25-py3-none-any.whl
Algorithm Hash digest
SHA256 091bcd4aa6922eea1cfd54b01ac7e80a9cd0c2ce1cefd2a863c07ae96e6f6100
MD5 360e0766d592d2b89e7e8d663bd9366c
BLAKE2b-256 c87ad25889ab321b6e98e2762f42c1574100f630130af65f75b8e73b7e12fa27

See more details on using hashes here.

Supported by

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