mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-07-08 16:12:15 +02:00
fixed the posterior prediction for laplace
The mis-match between the woodbury vector and KIf is still a bit of a mystery
This commit is contained in:
parent
b7508ce12b
commit
f0d97f5b84
2 changed files with 5 additions and 3 deletions
|
|
@ -27,9 +27,9 @@ class StudentT(Likelihood):
|
|||
|
||||
super(StudentT, self).__init__(gp_link, name='Student_T')
|
||||
|
||||
self.sigma2 = Param('t_noise', float(sigma2))
|
||||
self.sigma2 = Param('t_noise', float(sigma2), Logexp())
|
||||
self.v = Param('deg_free', float(deg_free))
|
||||
self.add_parameter(self.sigma2, Logexp())
|
||||
self.add_parameter(self.sigma2)
|
||||
self.add_parameter(self.v)
|
||||
self.v.constrain_fixed()
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue