[rllib] Fix bounds of space returned by preprocessor.observation_space (#4736)

This commit is contained in:
Eric Liang
2019-05-05 18:25:38 -07:00
committed by GitHub
parent bd00735fe8
commit 71b2dec3b4
2 changed files with 6 additions and 2 deletions
+1 -1
View File
@@ -99,7 +99,7 @@ This is how the example in the previous section looks when written using a polic
# this optimizer implements the IMPALA architecture
optimizer = AsyncSamplesOptimizer(
local_evaluator, remote_evaluator, train_batch_size=500)
local_evaluator, remote_evaluators, train_batch_size=500)
while True:
optimizer.step()