Added (SLOW) Pure Python implementations of flat_to_triang and triang_to_flat

This commit is contained in:
Mike Croucher 2015-04-01 15:42:49 +01:00
parent 27c65003d2
commit 985b2ea70c
4 changed files with 48 additions and 12 deletions

View file

@ -26,11 +26,6 @@ class MappingGradChecker(GPy.core.Model):
self.mapping.update_gradients(self.dL_dY, self.X)
class MappingTests(unittest.TestCase):
def test_kernelmapping(self):
@ -68,5 +63,5 @@ class MappingTests(unittest.TestCase):
if __name__ == "__main__":
print "Running unit tests, please be (very) patient..."
print("Running unit tests, please be (very) patient...")
unittest.main()