Open dragon28 opened 5 years ago
This error depends on the version of TensorFlow you use. With the required one (i.e 0.12.1) it works without changing the codebase. I also confirm that with the latest versions TensorFlow your solution solves the issue.
Hello People,
I managed to find some error, when I tested the ES algorithm.
Most of these errors were related to
es_distributed/tf_util.py
file which was originated from thetf.concat
function or method.Below were some of the changes:
1)
def concatenate(arrs, axis=0)
function at line 30 - 31from:
to:
2)
def flatgrad(loss, var_list)
function at line 219 - 222from:
to:
3)
def __init__(self, var_list)
function at line 243 -244from:
to:
My environment information: Ubuntu 18.04 x64 Python 3.6.8 tensorflow 1.13.1 Click 7.0 atari-py 0.1.15 numpy 1.16.3 gym 0.12.1 baselines 0.1.5
Thanks