mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-05 01:32:40 +02:00
array core and bgplvm working > changes due to __i<op>__ will now be reported
This commit is contained in:
parent
4cfc13d5fc
commit
9d262936c6
10 changed files with 177 additions and 54 deletions
|
|
@ -15,9 +15,9 @@ class Normal(Parameterized):
|
|||
'''
|
||||
def __init__(self, means, variances, name='latent space'):
|
||||
Parameterized.__init__(self, name=name)
|
||||
self.means = Param("mean", means)
|
||||
self.variances = Param('variance', variances, Logexp())
|
||||
self.add_parameters(self.means, self.variances)
|
||||
self.mean = Param("mean", means)
|
||||
self.variance = Param('variance', variances, Logexp())
|
||||
self.add_parameters(self.mean, self.variance)
|
||||
|
||||
def plot(self, *args):
|
||||
"""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue