Initial commit, setting up the laplace approximation for a student t

This commit is contained in:
Alan Saul 2013-03-12 17:42:00 +00:00
parent 67248ab7c2
commit 68eb83955c
5 changed files with 175 additions and 0 deletions

View file

@ -0,0 +1,14 @@
# Copyright (c) 2013, Alan Saul
import unittest
import numpy as np
import GPy
class coxGPTests(unittest.TestCase):
def test_laplace_approx(self):
pass
if __name__ == "__main__":
print "Running unit tests, please be (very) patient..."
unittest.main()