more samples for higher sampling accuracy

This commit is contained in:
Max Zwiessele 2013-10-01 08:57:00 +01:00
parent 045dc6d152
commit b1d7fc4745

View file

@ -105,7 +105,7 @@ class Test(unittest.TestCase):
def test_psi2(self):
for kern in self.kerns:
Nsamples = self.Nsamples/300.
Nsamples = self.Nsamples/10.
psi2 = kern.psi2(self.Z, self.q_x_mean, self.q_x_variance)
K_ = np.zeros((self.num_inducing, self.num_inducing))
diffs = []
@ -135,7 +135,7 @@ class Test(unittest.TestCase):
if __name__ == "__main__":
sys.argv = ['',
#'Test.test_psi0',
'Test.test_psi1',
#'Test.test_psi1',
'Test.test_psi2',
]
unittest.main()