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.
1 parent 7b38a48 commit 97a7a00Copy full SHA for 97a7a00
pymc/sampling/mcmc.py
@@ -665,8 +665,11 @@ def sample(
665
if draws == 0:
666
msg = "Tuning was enabled throughout the whole trace."
667
_log.warning(msg)
668
- elif draws < 500:
669
- msg = "Only %s samples in chain." % draws
+ elif draws < 100:
+ msg = (
670
+ "Only %s samples per chain. Reliable r-hat and ESS diagnostics require longer chains for accurate estimate."
671
+ % draws
672
+ )
673
674
675
auto_nuts_init = True
0 commit comments