From e80a45b3636a491409b28c77ee513a08311f1088 Mon Sep 17 00:00:00 2001 From: mzwiessele Date: Mon, 30 Nov 2015 18:09:09 +0000 Subject: [PATCH] [plotting] latent plotting had dimension mix up in it --- GPy/testing/plotting_tests.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/GPy/testing/plotting_tests.py b/GPy/testing/plotting_tests.py index f9f47b91..6cd3285a 100644 --- a/GPy/testing/plotting_tests.py +++ b/GPy/testing/plotting_tests.py @@ -341,7 +341,9 @@ def test_gplvm(): np.random.seed(111) m.plot_magnification(labels=labels) m.plot_steepest_gradient_map(resolution=10, data_labels=labels) - for do_test in _image_comparison(baseline_images=['gplvm_{}'.format(sub) for sub in ["latent", "latent_3d", "magnification", 'gradient']], extensions=extensions): + for do_test in _image_comparison(baseline_images=['gplvm_{}'.format(sub) for sub in ["latent", "latent_3d", "magnification", 'gradient']], + extensions=extensions, + tol=12): yield (do_test, ) def test_bayesian_gplvm():