Small PPO bug (#1265)

This commit is contained in:
Richard Liaw
2017-11-27 17:52:25 -08:00
committed by Philipp Moritz
parent f7c4f41df8
commit 5e37cb8e16
+1 -1
View File
@@ -128,7 +128,7 @@ class MeanStdFilter(object):
else:
# The unvectorized case.
self.rs.push(x)
self.buffer.push(x[i])
self.buffer.push(x)
if self.demean:
x = x - self.rs.mean
if self.destd: