Skip to content

Commit

Permalink
Remove experimental warning from external nuts samplers. (#6887)
Browse files Browse the repository at this point in the history
  • Loading branch information
twiecki authored Sep 1, 2023
1 parent 0069e5f commit dfb05b6
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
2 changes: 0 additions & 2 deletions pymc/sampling/mcmc.py
Original file line number Diff line number Diff line change
Expand Up @@ -270,8 +270,6 @@ def _sample_external_nuts(
nuts_sampler_kwargs: Optional[Dict],
**kwargs,
):
warnings.warn("Use of external NUTS sampler is still experimental", UserWarning)

if nuts_sampler_kwargs is None:
nuts_sampler_kwargs = {}

Expand Down
2 changes: 0 additions & 2 deletions tests/sampling/test_mcmc_external.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,6 @@ def test_external_nuts_sampler(recwarn, nuts_sampler):
if warn.category is not FutureWarning
}
expected = set()
if nuts_sampler != "pymc":
expected.add((UserWarning, "Use of external NUTS sampler is still experimental"))
if nuts_sampler == "nutpie":
expected.add(
(
Expand Down

0 comments on commit dfb05b6

Please sign in to comment.