Skip to content

Commit

Permalink
merged with refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
hill-a committed Aug 20, 2018
2 parents 07e2393 + 282e2ec commit 9fd2123
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[metadata]
# This includes the license file in the wheel.
license_file = LICENSE
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,9 @@
author='Ashley Hill',
url='https://github.com/openai/stable_baselines',
author_email='[email protected]',
version='1.0.0')
version='1.0.1')

# python setup.py sdist
# python setup.py bdist_wheel
# twine upload --repository-url https://test.pypi.org/legacy/ dist/*
# twine upload dist/*
5 changes: 5 additions & 0 deletions stable_baselines/acer/acer_simple.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,11 @@ def setup_model(self):
else:
raise ValueError("Error: ACER does not work with {} actions space.".format(self.action_space))

<<<<<<< HEAD:stable_baselines/acer/acer_simple.py
=======
self.n_batch = self.n_envs * self.n_steps

>>>>>>> refactoring:baselines/acer/acer_simple.py
self.graph = tf.Graph()
with self.graph.as_default():
self.sess = tf_util.make_session(num_cpu=self.num_procs, graph=self.graph)
Expand Down

0 comments on commit 9fd2123

Please sign in to comment.