hi,
In newer baselines version, save_state function has been removed from baselines.common.tf_util
in run_acktr.py, line 46 gives error.
can be replaced with these lines:
os.makedirs(os.path.dirname(fname), exist_ok=True)
saver = tf.train.Saver()
saver.save(tf.get_default_session(), fname)
hi, In newer baselines version, save_state function has been removed from baselines.common.tf_util
in run_acktr.py, line 46 gives error.
can be replaced with these lines: os.makedirs(os.path.dirname(fname), exist_ok=True) saver = tf.train.Saver() saver.save(tf.get_default_session(), fname)
thanks