From 372114b4ed6514177a73a890caaad0bb4238f52f Mon Sep 17 00:00:00 2001 From: Miguel Morales Date: Wed, 29 Jul 2020 23:58:35 -0600 Subject: [PATCH] Update sampler.py (#9805) Minor fix for warning string --- rllib/evaluation/sampler.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rllib/evaluation/sampler.py b/rllib/evaluation/sampler.py index 9bd4a3b37..402b25769 100644 --- a/rllib/evaluation/sampler.py +++ b/rllib/evaluation/sampler.py @@ -658,9 +658,9 @@ def _process_observations( "More than {} observations for {} env steps ".format( episode.batch_builder.total(), episode.batch_builder.count) + "are buffered in " - "the sampler. If this is more than you expected, check that " - "that you set a horizon on your environment correctly and that" - " it terminates at some point. " + "the sampler. If this is more than you expected, check " + "that you set a horizon on your environment correctly and " + "that it terminates at some point. " "Note: In multi-agent environments, `rollout_fragment_length` " "sets the batch size based on environment steps, not the " "steps of "