From c28ce5e8bbb78b99a01d39897c6590e7fa7cd82a Mon Sep 17 00:00:00 2001 From: Markus Semmler Date: Fri, 1 Sep 2023 18:18:14 +0200 Subject: [PATCH] Deactivate test case and add TODO --- tests/value/shapley/test_montecarlo.py | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/tests/value/shapley/test_montecarlo.py b/tests/value/shapley/test_montecarlo.py index 6ec72a8f3..da079952f 100644 --- a/tests/value/shapley/test_montecarlo.py +++ b/tests/value/shapley/test_montecarlo.py @@ -75,19 +75,14 @@ def test_analytic_montecarlo_shapley( test_cases_montecarlo_shapley_reproducible_stochastic = [ # TODO Add once issue #416 is closed. # (12, ShapleyMode.PermutationMontecarlo, {"done": MaxChecks(1)}), - # # FIXME! it should be enough with 2**(len(data)-1) samples - # ( - # 8, - # ShapleyMode.CombinatorialMontecarlo, - # {"done": MaxChecks(1)}, - # ), - (12, ShapleyMode.Owen, dict(n_samples=4, max_q=200)), - (12, ShapleyMode.OwenAntithetic, dict(n_samples=4, max_q=200)), ( - 4, - ShapleyMode.GroupTesting, - dict(n_samples=int(21), epsilon=0.2, delta=0.01), + 12, + ShapleyMode.CombinatorialMontecarlo, + {"done": MaxChecks(4)}, ), + (12, ShapleyMode.Owen, dict(n_samples=4, max_q=200)), + (12, ShapleyMode.OwenAntithetic, dict(n_samples=4, max_q=200)), + (4, ShapleyMode.GroupTesting, dict(n_samples=int(21), epsilon=0.2, delta=0.01)), ]