Ars increase (#2844)

* removed cv2

* remove opencv

* increased number of default rollouts ARS

* put cv2 back in this branch

* put cv2 back in this branch

* moved cv2 back where it belongs in preprocessors
This commit is contained in:
eugenevinitsky
2018-09-08 14:09:02 -07:00
committed by Eric Liang
parent bd64c940e9
commit 9ba751c29a
+2 -2
View File
@@ -28,8 +28,8 @@ Result = namedtuple("Result", [
DEFAULT_CONFIG = with_common_config({
'noise_stdev': 0.02, # std deviation of parameter noise
'num_deltas': 4, # number of perturbations to try
'deltas_used': 4, # number of perturbations to keep in gradient estimate
'num_deltas': 32, # number of perturbations to try
'deltas_used': 32, # number of perturbations to keep in gradient estimate
'num_workers': 2,
'stepsize': 0.01, # sgd step-size
'observation_filter': "MeanStdFilter",