Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v1.0 #69

Merged
merged 31 commits into from
Mar 11, 2021
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
ac890a2
Update sac hyperparams
araffin Mar 1, 2021
d033c0a
Bump version
araffin Mar 1, 2021
fa335df
Move real robot hyperparams
araffin Mar 1, 2021
27edfcb
Update HER params
araffin Mar 2, 2021
1e0c8bd
Fix for HER action noise
araffin Mar 2, 2021
84bd43c
Update benchmark file
araffin Mar 2, 2021
1d3b8a7
Update formatting
araffin Mar 2, 2021
599ba3f
Catch errors when benchmarking
araffin Mar 3, 2021
cb509ac
Use subprocess only if needed
araffin Mar 3, 2021
df76707
Change default number of threads for bench
araffin Mar 3, 2021
994cc30
Add pre-trained agents
araffin Mar 4, 2021
6172d4a
Catch keyboard interrupt for enjoy
araffin Mar 5, 2021
4a912b4
Update benchmark
araffin Mar 5, 2021
2395593
Update README and changelog
araffin Mar 5, 2021
8a41755
Merge branch 'feat/release-v1.0rc0' of github.com:DLR-RM/rl-baselines…
araffin Mar 5, 2021
1b9611c
Tuned DDPG hyperparam
araffin Mar 5, 2021
ef04597
Update TD3 hyperparams
araffin Mar 5, 2021
597a304
Minor edit
araffin Mar 5, 2021
4c2acb1
Add Reacher
araffin Mar 5, 2021
164c2d1
Update table
araffin Mar 5, 2021
7441e47
Ugrade SB3
araffin Mar 6, 2021
4cadd46
Add support for loading saved models with python 3.8
araffin Mar 6, 2021
52693c6
Upgrade SB3
araffin Mar 6, 2021
9debc19
Add BipedalWalkerHardcore
araffin Mar 8, 2021
190adf4
Merge branch 'feat/release-v1.0rc0' of github.com:DLR-RM/rl-baselines…
araffin Mar 8, 2021
d5f75ff
Changed pybullet version in CI
araffin Mar 8, 2021
a02f4fb
Add more Atari games
araffin Mar 9, 2021
ae953f4
Update README
araffin Mar 9, 2021
40f3b5b
Add benchmark files
araffin Mar 9, 2021
1c903c6
Add QR-DQN Enduro
araffin Mar 11, 2021
11f6266
Update README + bug fix for HER enjoy
araffin Mar 11, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Ugrade SB3
araffin committed Mar 6, 2021
commit 7441e47e2b8701b049e1a1f5eebf781ddf22ca0e
1 change: 0 additions & 1 deletion .dockerignore

This file was deleted.

18 changes: 18 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
__pycache__/
logs
.pytest_cache/
.coverage
.coverage.*
.idea/
cluster_sbatch.sh
cluster_sbatch_mpi.sh
cluster_torchy.sh
logs/
rl-trained_agents/
.pytype/
htmlcov/
git_rewrite_commit_history.sh
.vscode/
# ignore for docker builds
rl-trained-agents/
.git/
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## Release 1.0rc1 (WIP)

### Breaking Changes
- Upgrade to SB3 >= 1.0rc1

### New Features
- Added 90+ trained agents + benchmark file
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
stable-baselines3[extra,tests,docs]>=0.11.1
stable-baselines3[extra,tests,docs]>=1.0rc1
box2d-py==2.3.8
pybullet
gym-minigrid
@@ -7,4 +7,4 @@ optuna
pytablewriter
seaborn
pyyaml>=5.1
sb3-contrib>=0.11.1
sb3-contrib>=1.0rc1
2 changes: 1 addition & 1 deletion scripts/build_docker.sh
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@
PARENT=stablebaselines/stable-baselines3

TAG=stablebaselines/rl-baselines3-zoo
VERSION=0.11.1
VERSION=1.0

if [[ ${USE_GPU} == "True" ]]; then
PARENT="${PARENT}:${VERSION}"