From 6522ace359fd9846cfd7c3080431b3951aa3b482 Mon Sep 17 00:00:00 2001 From: Miles Lucas Date: Sun, 25 Apr 2021 17:44:32 -0500 Subject: [PATCH] remove 8D gaussian from tests --- test/models.jl | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/test/models.jl b/test/models.jl index 91c84b56..1c012912 100644 --- a/test/models.jl +++ b/test/models.jl @@ -3,11 +3,7 @@ const test_props = [Proposals.Uniform(), Proposals.RWalk(ratio=0.9, walks=50), P @testset "$(nameof(bound)), $(nameof(typeof(proposal)))" for bound in test_bounds, proposal in test_props - @testset "Correlated Gaussian Conjugate Prior - ndims=$D" for D in [2, 4, 8] - if D == 8 && (proposal isa Proposals.RWalk || proposal isa Proposals.RStagger) - # TODO evidence estimates are terrible for D=8 - continue - end + @testset "Correlated Gaussian Conjugate Prior - ndims=$D" for D in [2, 4] model, logz = Models.CorrelatedGaussian(D) # match JAXNS paper setup, generally sampler = Nested(D, 50D; bounds=bound, proposal=proposal)