copyrighting

This commit is contained in:
James Hensman 2014-11-21 11:38:13 +00:00
parent aa473178f7
commit 82dfe7590d
8 changed files with 15 additions and 24 deletions

View file

@ -1,7 +1,7 @@
# Copyright (c) 2012, GPy authors (see AUTHORS.txt). # Copyright (c) 2012, GPy authors (see AUTHORS.txt).
# Licensed under the BSD 3-clause license (see LICENSE.txt) # Licensed under the BSD 3-clause license (see LICENSE.txt)
''' """
(Hyper-)Parameter domains defined for :py:mod:`~GPy.core.priors` and :py:mod:`~GPy.kern`. (Hyper-)Parameter domains defined for :py:mod:`~GPy.core.priors` and :py:mod:`~GPy.kern`.
These domains specify the legitimate realm of the parameters to live in. These domains specify the legitimate realm of the parameters to live in.
@ -10,14 +10,14 @@ These domains specify the legitimate realm of the parameters to live in.
:const:`~GPy.core.domains._POSITIVE`: :const:`~GPy.core.domains._POSITIVE`:
positive domain, only positive real values are allowed positive domain, only positive real values are allowed
:const:`~GPy.core.domains._NEGATIVE`: :const:`~GPy.core.domains._NEGATIVE`:
same as :const:`~GPy.core.domains._POSITIVE`, but only negative values are allowed same as :const:`~GPy.core.domains._POSITIVE`, but only negative values are allowed
:const:`~GPy.core.domains._BOUNDED`: :const:`~GPy.core.domains._BOUNDED`:
only values within the bounded range are allowed, only values within the bounded range are allowed,
the bounds are specified withing the object with the bounded range the bounds are specified withing the object with the bounded range
''' """
_REAL = 'real' _REAL = 'real'
_POSITIVE = "positive" _POSITIVE = "positive"

View file

@ -1,8 +1,6 @@
''' # Copyright (c) 2014, Max Zwiessele
Created on Oct 2, 2013 # Licensed under the BSD 3-clause license (see LICENSE.txt)
@author: maxzwiessele
'''
import numpy import numpy
from numpy.lib.function_base import vectorize from numpy.lib.function_base import vectorize
from lists_and_dicts import IntArrayDict from lists_and_dicts import IntArrayDict

View file

@ -1,8 +1,5 @@
''' # Copyright (c) 2014, Max Zwiessele
Created on 27 Feb 2014 # Licensed under the BSD 3-clause license (see LICENSE.txt)
@author: maxz
'''
from collections import defaultdict from collections import defaultdict
import weakref import weakref

View file

@ -1,8 +1,5 @@
''' # Copyright (c) 2014, Max Zwiessele
Created on 30 Oct 2014 # Licensed under the BSD 3-clause license (see LICENSE.txt)
@author: maxz
'''
class Observable(object): class Observable(object):
@ -66,4 +63,4 @@ class Observable(object):
def change_priority(self, observer, callble, priority): def change_priority(self, observer, callble, priority):
self.remove_observer(observer, callble) self.remove_observer(observer, callble)
self.add_observer(observer, callble, priority) self.add_observer(observer, callble, priority)

View file

@ -1,7 +1,6 @@
# Copyright (c) 2012, GPy authors (see AUTHORS.txt). # Copyright (c) 2014, Max Zwiessele
# Licensed under the BSD 3-clause license (see LICENSE.txt) # Licensed under the BSD 3-clause license (see LICENSE.txt)
__updated__ = '2014-11-11'
import numpy as np import numpy as np
from parameter_core import Pickleable from parameter_core import Pickleable

View file

@ -1,4 +1,4 @@
# Copyright (c) 2012, GPy authors (see AUTHORS.txt). # Copyright (c) 2014, Max Zwiessele
# Licensed under the BSD 3-clause license (see LICENSE.txt) # Licensed under the BSD 3-clause license (see LICENSE.txt)
import itertools import itertools

View file

@ -1,4 +1,4 @@
# Copyright (c) 2012, GPy authors (see AUTHORS.txt). # Copyright (c) 2014, Max Zwiessele, James Hensman
# Licensed under the BSD 3-clause license (see LICENSE.txt) # Licensed under the BSD 3-clause license (see LICENSE.txt)

View file

@ -1,4 +1,4 @@
# Copyright (c) 2012, GPy authors (see AUTHORS.txt). # Copyright (c) 2012 - 2014, GPy authors (see AUTHORS.txt).
# Licensed under the BSD 3-clause license (see LICENSE.txt) # Licensed under the BSD 3-clause license (see LICENSE.txt)