[updates] merged update structure

This commit is contained in:
Max Zwiessele 2014-09-22 09:29:48 +01:00
commit bccd8e094a
36 changed files with 190 additions and 107 deletions

View file

@ -5,9 +5,13 @@
"""
Gaussian Processes classification
"""
import pylab as pb
import GPy
try:
import pylab as pb
except:
pass
default_seed = 10000
def oil(num_inducing=50, max_iters=100, kernel=None, optimize=True, plot=True):

View file

@ -1,5 +1,8 @@
import numpy as np
import pylab as pb
try:
import pylab as pb
except:
pass
import GPy
pb.ion()
pb.close('all')

View file

@ -1,7 +1,10 @@
import GPy
import numpy as np
import matplotlib.pyplot as plt
from GPy.util import datasets
try:
import matplotlib.pyplot as plt
except:
pass
def student_t_approx(optimize=True, plot=True):
"""

View file

@ -4,7 +4,10 @@
"""
Gaussian Processes regression examples
"""
import pylab as pb
try:
import pylab as pb
except:
pass
import numpy as np
import GPy

View file

@ -1,7 +1,10 @@
# Copyright (c) 2012, GPy authors (see AUTHORS.txt).
# Licensed under the BSD 3-clause license (see LICENSE.txt)
import pylab as pb
try:
import pylab as pb
except:
pass
import numpy as np
import GPy

View file

@ -6,8 +6,11 @@
Code of Tutorials
"""
import pylab as pb
pb.ion()
try:
import pylab as pb
pb.ion()
except:
pass
import numpy as np
import GPy