From 55a242b439d082497af0eb9eef7db0ba96e5c678 Mon Sep 17 00:00:00 2001 From: Joseph Viviano Date: Tue, 27 Feb 2024 09:19:48 -0500 Subject: [PATCH] turn off replay buffer while we determine issue with off policy sampling --- tutorials/examples/train_hypergrid.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/examples/train_hypergrid.py b/tutorials/examples/train_hypergrid.py index f52932e9..a051e850 100644 --- a/tutorials/examples/train_hypergrid.py +++ b/tutorials/examples/train_hypergrid.py @@ -292,7 +292,7 @@ def main(args): # noqa: C901 parser.add_argument( "--replay_buffer_size", type=int, - default=100, + default=0, help="If zero, no replay buffer is used. Otherwise, the replay buffer is used.", )