mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-08 19:42:39 +02:00
change input for output
This commit is contained in:
parent
8e7a71c63e
commit
e832a627c5
2 changed files with 2 additions and 2 deletions
|
|
@ -17,7 +17,7 @@ class EP(likelihood):
|
||||||
self.epsilon = epsilon
|
self.epsilon = epsilon
|
||||||
self.eta, self.delta = power_ep
|
self.eta, self.delta = power_ep
|
||||||
self.data = data
|
self.data = data
|
||||||
self.N, self.input_dim = self.data.shape
|
self.N, self.output_dim = self.data.shape
|
||||||
self.is_heteroscedastic = True
|
self.is_heteroscedastic = True
|
||||||
self.Nparams = 0
|
self.Nparams = 0
|
||||||
self._transf_data = self.LikelihoodFunction._preprocess_values(data)
|
self._transf_data = self.LikelihoodFunction._preprocess_values(data)
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@ class Gaussian(likelihood):
|
||||||
self.is_heteroscedastic = False
|
self.is_heteroscedastic = False
|
||||||
self.Nparams = 1
|
self.Nparams = 1
|
||||||
self.Z = 0. # a correction factor which accounts for the approximation made
|
self.Z = 0. # a correction factor which accounts for the approximation made
|
||||||
N, self.input_dim = data.shape
|
N, self.output_dim = data.shape
|
||||||
|
|
||||||
# normalization
|
# normalization
|
||||||
if normalize:
|
if normalize:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue