From 92adeecb6ceb3b58fb7834625744334501bfdd81 Mon Sep 17 00:00:00 2001 From: Nicolo Fusi Date: Thu, 29 Nov 2012 16:39:20 +0000 Subject: [PATCH] added copyright notice and license at the top --- GPy/__init__.py | 4 ++++ GPy/core/__init__.py | 4 ++++ GPy/core/model.py | 4 ++++ GPy/core/parameterised.py | 4 ++++ GPy/core/priors.py | 4 ++++ GPy/examples/GPLVM_demo.py | 4 ++++ GPy/examples/GP_regression_demo.py | 4 ++++ GPy/examples/GP_regression_kern_demo.py | 4 ++++ GPy/examples/classification.py | 4 ++++ GPy/examples/oil_flow_demo.py | 4 ++++ GPy/examples/regression.py | 4 ++++ GPy/examples/sparse_GPLVM_demo.py | 4 ++++ GPy/examples/sparse_GP_regression_demo.py | 4 ++++ GPy/examples/warped_GP_demo.py | 4 ++++ GPy/inference/Expectation_Propagation.py | 4 ++++ GPy/inference/likelihoods.py | 4 ++++ GPy/inference/optimization.py | 4 ++++ GPy/inference/samplers.py | 4 ++++ GPy/kern/Brownian.py | 4 ++++ GPy/kern/DelayedDecorator.py | 4 ++++ GPy/kern/Matern32.py | 4 ++++ GPy/kern/Matern52.py | 4 ++++ GPy/kern/__init__.py | 4 ++++ GPy/kern/bias.py | 4 ++++ GPy/kern/constructors.py | 4 ++++ GPy/kern/exponential.py | 4 ++++ GPy/kern/finite_dimensional.py | 4 ++++ GPy/kern/kern.py | 4 ++++ GPy/kern/kernpart.py | 4 ++++ GPy/kern/linear.py | 4 ++++ GPy/kern/linear_ARD.py | 4 ++++ GPy/kern/rbf.py | 4 ++++ GPy/kern/rbf_ARD.py | 4 ++++ GPy/kern/spline.py | 4 ++++ GPy/kern/white.py | 4 ++++ GPy/models/GPLVM.py | 4 ++++ GPy/models/GP_EP.py | 4 ++++ GPy/models/GP_regression.py | 4 ++++ GPy/models/__init__.py | 4 ++++ GPy/models/generalized_FITC.py | 4 ++++ GPy/models/sparse_GPLVM.py | 4 ++++ GPy/models/sparse_GP_regression.py | 4 ++++ GPy/models/warped_GP.py | 4 ++++ GPy/testing/unit_tests.py | 4 ++++ GPy/util/Tango.py | 4 ++++ GPy/util/__init__.py | 4 ++++ GPy/util/linalg.py | 4 ++++ GPy/util/misc.py | 4 ++++ GPy/util/plot.py | 4 ++++ GPy/util/squashers.py | 4 ++++ GPy/util/warping_functions.py | 4 ++++ 51 files changed, 204 insertions(+) diff --git a/GPy/__init__.py b/GPy/__init__.py index 718b763b..876e2ca6 100644 --- a/GPy/__init__.py +++ b/GPy/__init__.py @@ -1,3 +1,7 @@ +# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Licensed under the BSD 3-clause license (see LICENSE.txt) + + import kern import models import inference diff --git a/GPy/core/__init__.py b/GPy/core/__init__.py index 4ffedbc3..bb97b04e 100644 --- a/GPy/core/__init__.py +++ b/GPy/core/__init__.py @@ -1,3 +1,7 @@ +# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Licensed under the BSD 3-clause license (see LICENSE.txt) + + from model import * from parameterised import * import priors diff --git a/GPy/core/model.py b/GPy/core/model.py index 99aa4130..9b373030 100644 --- a/GPy/core/model.py +++ b/GPy/core/model.py @@ -1,3 +1,7 @@ +# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Licensed under the BSD 3-clause license (see LICENSE.txt) + + import numpy as np from scipy import optimize import sys, pdb diff --git a/GPy/core/parameterised.py b/GPy/core/parameterised.py index 5eaa0725..d9e9d0d7 100644 --- a/GPy/core/parameterised.py +++ b/GPy/core/parameterised.py @@ -1,3 +1,7 @@ +# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Licensed under the BSD 3-clause license (see LICENSE.txt) + + import numpy as np import re import copy diff --git a/GPy/core/priors.py b/GPy/core/priors.py index 3b13bb62..7ad02e48 100644 --- a/GPy/core/priors.py +++ b/GPy/core/priors.py @@ -1,3 +1,7 @@ +# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Licensed under the BSD 3-clause license (see LICENSE.txt) + + import numpy as np import pylab as pb from scipy.special import gammaln, digamma diff --git a/GPy/examples/GPLVM_demo.py b/GPy/examples/GPLVM_demo.py index 188adef3..651af6be 100644 --- a/GPy/examples/GPLVM_demo.py +++ b/GPy/examples/GPLVM_demo.py @@ -1,3 +1,7 @@ +# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Licensed under the BSD 3-clause license (see LICENSE.txt) + + import numpy as np import pylab as pb import GPy diff --git a/GPy/examples/GP_regression_demo.py b/GPy/examples/GP_regression_demo.py index cdf4e1da..d1a4193a 100644 --- a/GPy/examples/GP_regression_demo.py +++ b/GPy/examples/GP_regression_demo.py @@ -1,3 +1,7 @@ +# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Licensed under the BSD 3-clause license (see LICENSE.txt) + + """ Simple Gaussian Processes regression with an RBF kernel """ diff --git a/GPy/examples/GP_regression_kern_demo.py b/GPy/examples/GP_regression_kern_demo.py index bb61b961..8f0b9226 100644 --- a/GPy/examples/GP_regression_kern_demo.py +++ b/GPy/examples/GP_regression_kern_demo.py @@ -1,3 +1,7 @@ +# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Licensed under the BSD 3-clause license (see LICENSE.txt) + + """ Simple one-dimensional Gaussian Processes with assorted kernel functions """ diff --git a/GPy/examples/classification.py b/GPy/examples/classification.py index 0bbe0345..eb7a887e 100644 --- a/GPy/examples/classification.py +++ b/GPy/examples/classification.py @@ -1,3 +1,7 @@ +# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Licensed under the BSD 3-clause license (see LICENSE.txt) + + """ Simple Gaussian Processes classification """ diff --git a/GPy/examples/oil_flow_demo.py b/GPy/examples/oil_flow_demo.py index 1dfa2f78..eee74461 100644 --- a/GPy/examples/oil_flow_demo.py +++ b/GPy/examples/oil_flow_demo.py @@ -1,3 +1,7 @@ +# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Licensed under the BSD 3-clause license (see LICENSE.txt) + + import cPickle as pickle import numpy as np import pylab as pb diff --git a/GPy/examples/regression.py b/GPy/examples/regression.py index 5497559f..d61c8b10 100644 --- a/GPy/examples/regression.py +++ b/GPy/examples/regression.py @@ -1,3 +1,7 @@ +# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Licensed under the BSD 3-clause license (see LICENSE.txt) + + """ Gaussian Processes regression examples """ diff --git a/GPy/examples/sparse_GPLVM_demo.py b/GPy/examples/sparse_GPLVM_demo.py index 03fed52d..ba96b9bc 100644 --- a/GPy/examples/sparse_GPLVM_demo.py +++ b/GPy/examples/sparse_GPLVM_demo.py @@ -1,3 +1,7 @@ +# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Licensed under the BSD 3-clause license (see LICENSE.txt) + + import numpy as np import pylab as pb import GPy diff --git a/GPy/examples/sparse_GP_regression_demo.py b/GPy/examples/sparse_GP_regression_demo.py index 799b35b3..e996ce50 100644 --- a/GPy/examples/sparse_GP_regression_demo.py +++ b/GPy/examples/sparse_GP_regression_demo.py @@ -1,3 +1,7 @@ +# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Licensed under the BSD 3-clause license (see LICENSE.txt) + + import numpy as np """ Sparse Gaussian Processes regression with an RBF kernel diff --git a/GPy/examples/warped_GP_demo.py b/GPy/examples/warped_GP_demo.py index 00c3d828..3b75694a 100644 --- a/GPy/examples/warped_GP_demo.py +++ b/GPy/examples/warped_GP_demo.py @@ -1,3 +1,7 @@ +# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Licensed under the BSD 3-clause license (see LICENSE.txt) + + import numpy as np import scipy as sp import pdb, sys, pickle diff --git a/GPy/inference/Expectation_Propagation.py b/GPy/inference/Expectation_Propagation.py index bb1bb959..377b1963 100644 --- a/GPy/inference/Expectation_Propagation.py +++ b/GPy/inference/Expectation_Propagation.py @@ -1,3 +1,7 @@ +# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Licensed under the BSD 3-clause license (see LICENSE.txt) + + import numpy as np import random from scipy import stats, linalg diff --git a/GPy/inference/likelihoods.py b/GPy/inference/likelihoods.py index f4e47c10..6f5e81fa 100644 --- a/GPy/inference/likelihoods.py +++ b/GPy/inference/likelihoods.py @@ -1,3 +1,7 @@ +# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Licensed under the BSD 3-clause license (see LICENSE.txt) + + import numpy as np from scipy import stats import scipy as sp diff --git a/GPy/inference/optimization.py b/GPy/inference/optimization.py index 6a28db44..5f9a7a73 100644 --- a/GPy/inference/optimization.py +++ b/GPy/inference/optimization.py @@ -1,3 +1,7 @@ +# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Licensed under the BSD 3-clause license (see LICENSE.txt) + + from scipy import optimize # import rasmussens_minimize as rasm import pdb diff --git a/GPy/inference/samplers.py b/GPy/inference/samplers.py index 866baa63..1216f1eb 100644 --- a/GPy/inference/samplers.py +++ b/GPy/inference/samplers.py @@ -1,3 +1,7 @@ +# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Licensed under the BSD 3-clause license (see LICENSE.txt) + + import numpy as np from scipy import linalg, optimize import pylab as pb diff --git a/GPy/kern/Brownian.py b/GPy/kern/Brownian.py index 3e1d8ee5..07d5fbd6 100644 --- a/GPy/kern/Brownian.py +++ b/GPy/kern/Brownian.py @@ -1,3 +1,7 @@ +# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Licensed under the BSD 3-clause license (see LICENSE.txt) + + from kernpart import kernpart import numpy as np diff --git a/GPy/kern/DelayedDecorator.py b/GPy/kern/DelayedDecorator.py index bcd53744..32a25936 100644 --- a/GPy/kern/DelayedDecorator.py +++ b/GPy/kern/DelayedDecorator.py @@ -1,3 +1,7 @@ +# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Licensed under the BSD 3-clause license (see LICENSE.txt) + + from new import instancemethod #this is here so that we can have nice syntatic sugar when taking gradients # See the transform_gradients decorator in kern diff --git a/GPy/kern/Matern32.py b/GPy/kern/Matern32.py index da4e8a6d..c37bd5c0 100644 --- a/GPy/kern/Matern32.py +++ b/GPy/kern/Matern32.py @@ -1,3 +1,7 @@ +# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Licensed under the BSD 3-clause license (see LICENSE.txt) + + from kernpart import kernpart import numpy as np import hashlib diff --git a/GPy/kern/Matern52.py b/GPy/kern/Matern52.py index 836fd793..4af65a89 100644 --- a/GPy/kern/Matern52.py +++ b/GPy/kern/Matern52.py @@ -1,3 +1,7 @@ +# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Licensed under the BSD 3-clause license (see LICENSE.txt) + + from kernpart import kernpart import numpy as np import hashlib diff --git a/GPy/kern/__init__.py b/GPy/kern/__init__.py index 35f70a35..be3c902f 100644 --- a/GPy/kern/__init__.py +++ b/GPy/kern/__init__.py @@ -1,2 +1,6 @@ +# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Licensed under the BSD 3-clause license (see LICENSE.txt) + + from constructors import rbf, Matern32, Matern52, exponential, linear, white, bias, finite_dimensional, rbf_ARD, spline, Brownian, linear_ARD from kern import kern diff --git a/GPy/kern/bias.py b/GPy/kern/bias.py index 55c5cff6..6d1bbf3f 100644 --- a/GPy/kern/bias.py +++ b/GPy/kern/bias.py @@ -1,3 +1,7 @@ +# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Licensed under the BSD 3-clause license (see LICENSE.txt) + + from kernpart import kernpart import numpy as np import hashlib diff --git a/GPy/kern/constructors.py b/GPy/kern/constructors.py index f3ffdba2..99b0aab3 100644 --- a/GPy/kern/constructors.py +++ b/GPy/kern/constructors.py @@ -1,3 +1,7 @@ +# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Licensed under the BSD 3-clause license (see LICENSE.txt) + + import numpy as np from kern import kern diff --git a/GPy/kern/exponential.py b/GPy/kern/exponential.py index f1faf51f..1e6f67ad 100644 --- a/GPy/kern/exponential.py +++ b/GPy/kern/exponential.py @@ -1,3 +1,7 @@ +# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Licensed under the BSD 3-clause license (see LICENSE.txt) + + from kernpart import kernpart import numpy as np import hashlib diff --git a/GPy/kern/finite_dimensional.py b/GPy/kern/finite_dimensional.py index bb9d0a90..421a3c5b 100644 --- a/GPy/kern/finite_dimensional.py +++ b/GPy/kern/finite_dimensional.py @@ -1,3 +1,7 @@ +# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Licensed under the BSD 3-clause license (see LICENSE.txt) + + from kernpart import kernpart import numpy as np from ..util.linalg import pdinv,mdot diff --git a/GPy/kern/kern.py b/GPy/kern/kern.py index a15ee872..99ce9089 100644 --- a/GPy/kern/kern.py +++ b/GPy/kern/kern.py @@ -1,3 +1,7 @@ +# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Licensed under the BSD 3-clause license (see LICENSE.txt) + + import numpy as np from ..core.parameterised import parameterised from DelayedDecorator import DelayedDecorator diff --git a/GPy/kern/kernpart.py b/GPy/kern/kernpart.py index 25eda4d5..5a852aca 100644 --- a/GPy/kern/kernpart.py +++ b/GPy/kern/kernpart.py @@ -1,3 +1,7 @@ +# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Licensed under the BSD 3-clause license (see LICENSE.txt) + + class kernpart(object): def __init__(self,D): """ diff --git a/GPy/kern/linear.py b/GPy/kern/linear.py index 17215c75..9470d29a 100644 --- a/GPy/kern/linear.py +++ b/GPy/kern/linear.py @@ -1,3 +1,7 @@ +# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Licensed under the BSD 3-clause license (see LICENSE.txt) + + from kernpart import kernpart import numpy as np class linear(kernpart): diff --git a/GPy/kern/linear_ARD.py b/GPy/kern/linear_ARD.py index 3c7482d3..fe2056cd 100644 --- a/GPy/kern/linear_ARD.py +++ b/GPy/kern/linear_ARD.py @@ -1,3 +1,7 @@ +# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Licensed under the BSD 3-clause license (see LICENSE.txt) + + from kernpart import kernpart import numpy as np diff --git a/GPy/kern/rbf.py b/GPy/kern/rbf.py index dd498d6f..70ec06f4 100644 --- a/GPy/kern/rbf.py +++ b/GPy/kern/rbf.py @@ -1,3 +1,7 @@ +# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Licensed under the BSD 3-clause license (see LICENSE.txt) + + from kernpart import kernpart import numpy as np import hashlib diff --git a/GPy/kern/rbf_ARD.py b/GPy/kern/rbf_ARD.py index 8e29b23a..f1e5f36a 100644 --- a/GPy/kern/rbf_ARD.py +++ b/GPy/kern/rbf_ARD.py @@ -1,3 +1,7 @@ +# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Licensed under the BSD 3-clause license (see LICENSE.txt) + + from kernpart import kernpart import numpy as np import hashlib diff --git a/GPy/kern/spline.py b/GPy/kern/spline.py index dc68f340..9b10bb6c 100644 --- a/GPy/kern/spline.py +++ b/GPy/kern/spline.py @@ -1,3 +1,7 @@ +# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Licensed under the BSD 3-clause license (see LICENSE.txt) + + from kernpart import kernpart import numpy as np import hashlib diff --git a/GPy/kern/white.py b/GPy/kern/white.py index 147c2fd1..a882832a 100644 --- a/GPy/kern/white.py +++ b/GPy/kern/white.py @@ -1,3 +1,7 @@ +# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Licensed under the BSD 3-clause license (see LICENSE.txt) + + from kernpart import kernpart import numpy as np class white(kernpart): diff --git a/GPy/models/GPLVM.py b/GPy/models/GPLVM.py index ac644d9b..db678d84 100644 --- a/GPy/models/GPLVM.py +++ b/GPy/models/GPLVM.py @@ -1,3 +1,7 @@ +# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Licensed under the BSD 3-clause license (see LICENSE.txt) + + import numpy as np import pylab as pb import sys, pdb diff --git a/GPy/models/GP_EP.py b/GPy/models/GP_EP.py index 134b7c43..dec9a349 100644 --- a/GPy/models/GP_EP.py +++ b/GPy/models/GP_EP.py @@ -1,3 +1,7 @@ +# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Licensed under the BSD 3-clause license (see LICENSE.txt) + + import numpy as np import pylab as pb from scipy import stats, linalg diff --git a/GPy/models/GP_regression.py b/GPy/models/GP_regression.py index fc947be8..639fc484 100644 --- a/GPy/models/GP_regression.py +++ b/GPy/models/GP_regression.py @@ -1,3 +1,7 @@ +# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Licensed under the BSD 3-clause license (see LICENSE.txt) + + import numpy as np import pylab as pb from .. import kern diff --git a/GPy/models/__init__.py b/GPy/models/__init__.py index 1ec2a4fe..48b0ba57 100644 --- a/GPy/models/__init__.py +++ b/GPy/models/__init__.py @@ -1,3 +1,7 @@ +# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Licensed under the BSD 3-clause license (see LICENSE.txt) + + from GP_regression import GP_regression from sparse_GP_regression import sparse_GP_regression from GPLVM import GPLVM diff --git a/GPy/models/generalized_FITC.py b/GPy/models/generalized_FITC.py index 8fb59264..0552c867 100644 --- a/GPy/models/generalized_FITC.py +++ b/GPy/models/generalized_FITC.py @@ -1,3 +1,7 @@ +# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Licensed under the BSD 3-clause license (see LICENSE.txt) + + import numpy as np import pylab as pb from scipy import stats, linalg diff --git a/GPy/models/sparse_GPLVM.py b/GPy/models/sparse_GPLVM.py index f1888b6c..2ba1a99a 100644 --- a/GPy/models/sparse_GPLVM.py +++ b/GPy/models/sparse_GPLVM.py @@ -1,3 +1,7 @@ +# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Licensed under the BSD 3-clause license (see LICENSE.txt) + + import numpy as np import pylab as pb import sys, pdb diff --git a/GPy/models/sparse_GP_regression.py b/GPy/models/sparse_GP_regression.py index fc434691..ef86afa9 100644 --- a/GPy/models/sparse_GP_regression.py +++ b/GPy/models/sparse_GP_regression.py @@ -1,3 +1,7 @@ +# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Licensed under the BSD 3-clause license (see LICENSE.txt) + + import numpy as np import pylab as pb from ..util.linalg import mdot, jitchol, chol_inv, pdinv diff --git a/GPy/models/warped_GP.py b/GPy/models/warped_GP.py index 880b8b29..9a1bcbe1 100644 --- a/GPy/models/warped_GP.py +++ b/GPy/models/warped_GP.py @@ -1,3 +1,7 @@ +# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Licensed under the BSD 3-clause license (see LICENSE.txt) + + import numpy as np from .. import kern from ..core import model diff --git a/GPy/testing/unit_tests.py b/GPy/testing/unit_tests.py index 9b6d33e1..9191cedd 100644 --- a/GPy/testing/unit_tests.py +++ b/GPy/testing/unit_tests.py @@ -1,3 +1,7 @@ +# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Licensed under the BSD 3-clause license (see LICENSE.txt) + + import unittest import numpy as np import GPy diff --git a/GPy/util/Tango.py b/GPy/util/Tango.py index fec0a3d1..d2a16fdf 100644 --- a/GPy/util/Tango.py +++ b/GPy/util/Tango.py @@ -1,3 +1,7 @@ +# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Licensed under the BSD 3-clause license (see LICENSE.txt) + + import matplotlib as mpl import pylab as pb diff --git a/GPy/util/__init__.py b/GPy/util/__init__.py index 9e495be2..0e8144c4 100644 --- a/GPy/util/__init__.py +++ b/GPy/util/__init__.py @@ -1,3 +1,7 @@ +# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Licensed under the BSD 3-clause license (see LICENSE.txt) + + import linalg import misc import plot diff --git a/GPy/util/linalg.py b/GPy/util/linalg.py index 3e51b7df..8afffce3 100644 --- a/GPy/util/linalg.py +++ b/GPy/util/linalg.py @@ -1,3 +1,7 @@ +# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Licensed under the BSD 3-clause license (see LICENSE.txt) + + import numpy as np from scipy import linalg, optimize import pylab as pb diff --git a/GPy/util/misc.py b/GPy/util/misc.py index 0725a973..d660e2d4 100644 --- a/GPy/util/misc.py +++ b/GPy/util/misc.py @@ -1,3 +1,7 @@ +# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Licensed under the BSD 3-clause license (see LICENSE.txt) + + import numpy as np def linear_grid(D, n = 100, min_max = (-100, 100)): diff --git a/GPy/util/plot.py b/GPy/util/plot.py index 3bd7d8a0..8c06633e 100644 --- a/GPy/util/plot.py +++ b/GPy/util/plot.py @@ -1,3 +1,7 @@ +# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Licensed under the BSD 3-clause license (see LICENSE.txt) + + import Tango import pylab as pb import numpy as np diff --git a/GPy/util/squashers.py b/GPy/util/squashers.py index b338c343..0d4cf754 100644 --- a/GPy/util/squashers.py +++ b/GPy/util/squashers.py @@ -1,3 +1,7 @@ +# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Licensed under the BSD 3-clause license (see LICENSE.txt) + + import numpy as np def sigmoid(x): diff --git a/GPy/util/warping_functions.py b/GPy/util/warping_functions.py index 35450b59..5a6dc6b3 100644 --- a/GPy/util/warping_functions.py +++ b/GPy/util/warping_functions.py @@ -1,3 +1,7 @@ +# Copyright (c) 2012, GPy authors (see AUTHORS.txt). +# Licensed under the BSD 3-clause license (see LICENSE.txt) + + import numpy as np import scipy as sp import pylab as plt