Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
cpnota committed Apr 12, 2021
2 parents df96ce6 + 67b27aa commit ba0b7ec
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ jobs:

runs-on: ubuntu-latest

environment: deployment

steps:
- uses: actions/checkout@v2
- name: Set up Python
Expand Down
4 changes: 2 additions & 2 deletions all/presets/atari/a2c.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
"discount_factor": 0.99,
# Adam optimizer settings
"lr": 7e-4,
"eps": 1.5e-4,
"eps": 1e-3,
# Other optimization settings
"clip_grad": 0.1,
"clip_grad": 0.5,
"entropy_loss_scaling": 0.01,
"value_loss_scaling": 0.5,
# Batch settings
Expand Down
3 changes: 2 additions & 1 deletion all/presets/atari/c51.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,8 @@ def agent(self, writer=DummyWriter(), train_steps=float('inf')):
update_frequency=self.hyperparameters["update_frequency"],
writer=writer
),
lazy_frames=True
lazy_frames=True,
episodic_lives=True
)

def test_agent(self):
Expand Down
Binary file modified benchmarks/atari40.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified benchmarks/pybullet.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = 'Chris Nota'

# The full version, including alpha/beta/rc tags
release = '0.7.0-dev'
release = '0.7.0'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

setup(
name="autonomous-learning-library",
version="0.7.0-dev",
version="0.7.0",
description=("A library for building reinforcement learning agents in Pytorch"),
packages=find_packages(),
url="https://github.com/cpnota/autonomous-learning-library.git",
Expand Down

0 comments on commit ba0b7ec

Please sign in to comment.