We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
random_seed=-1
1 parent ab704ff commit b100e5dCopy full SHA for b100e5d
pymc/sampling/mcmc.py
@@ -727,6 +727,10 @@ def joined_blas_limiter():
727
)
728
729
if random_seed == -1:
730
+ warnings.warn(
731
+ "Setting random_seed = -1 is deprecated. Pass `None` to not specify a seed.",
732
+ FutureWarning,
733
+ )
734
random_seed = None
735
elif isinstance(random_seed, tuple | list):
736
warnings.warn(
0 commit comments