Skip to content

Instantly share code, notes, and snippets.

View Mind-The-Data's full-sized avatar

Brian Stampe Mind-The-Data

  • Missoula, Montana
View GitHub Profile
@aasensio
aasensio / gist:f56a765d2e184a4e50027504dd9bc3df
Created July 18, 2017 15:05
Nearest-Neighbor Gaussian Process in Theano
import numpy as np
import matplotlib.pyplot as pl
import scipy.stats as st
import theano.tensor as tt
import theano.tensor.slinalg as sl
from ipdb import set_trace as stop
from sklearn.neighbors import NearestNeighbors
def chol_invert(A):
"""