mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-04-28 22:36:24 +02:00
added a small test for warped gps
This commit is contained in:
parent
d6defa6645
commit
c221671530
1 changed files with 7 additions and 0 deletions
|
|
@ -203,6 +203,13 @@ class MiscTests(unittest.TestCase):
|
|||
m.optimize()
|
||||
print(m)
|
||||
|
||||
def test_warped_gp(self):
|
||||
k = GPy.kern.RBF(1)
|
||||
m = GPy.models.WarpedGP(self.X, self.Y, kernel=k)
|
||||
m.randomize()
|
||||
m.optimize()
|
||||
print(m)
|
||||
|
||||
class GradientTests(np.testing.TestCase):
|
||||
def setUp(self):
|
||||
######################################
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue