Skip to content

Commit 06e9d38

Browse files
Remove samplers from test as done in restructure
1 parent 97f297f commit 06e9d38

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

tests/integration/test_monte_carlo_thevenin.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
import pybop
88
from pybop import (
99
MALAMCMC,
10-
NUTS,
1110
DramACMC,
1211
HamiltonianMCMC,
1312
MonomialGammaHamiltonianMCMC,
@@ -121,19 +120,18 @@ def map_estimate(self, posterior):
121120
@pytest.mark.parametrize(
122121
"sampler",
123122
[
124-
NUTS,
125123
HamiltonianMCMC,
126124
MonomialGammaHamiltonianMCMC,
127125
RelativisticMCMC,
128-
SliceRankShrinkingMCMC,
129126
MALAMCMC,
130127
RaoBlackwellACMC,
131128
SliceDoublingMCMC,
132129
SliceStepoutMCMC,
133-
DramACMC,
134130
],
135131
)
136132
def test_sampling_thevenin(self, sampler, posterior, map_estimate):
133+
# Note: we don't test the NUTS, SliceRankShrinking or DramACMC samplers,
134+
# as convergence for this problem was found to be challenging.
137135
x0 = np.clip(map_estimate + np.random.normal(0, 5e-3, size=2), 1e-4, 1e-1)
138136
posterior.parameters.update(initial_values=x0)
139137
options = pybop.PintsSamplerOptions(

0 commit comments

Comments
 (0)