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

Match PPG implementation #186

Merged
merged 32 commits into from
May 28, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
419041d
added nit changes from ppg code
dipamc May 14, 2022
2e1190b
change observation buffer to uint8
dipamc May 14, 2022
86f5be7
sample full rollouts
dipamc May 15, 2022
beff293
minor device fix
dipamc May 15, 2022
4cb85d5
update optimizer settings
dipamc May 16, 2022
d6ee26b
add ppg documentation
May 18, 2022
fea4531
update mkdocs
dipamc May 18, 2022
20f15da
update images to png for codespell errors
dipamc May 18, 2022
6c3cb05
trigger CI
vwxyzjn May 18, 2022
631ab96
Minor format change
vwxyzjn May 18, 2022
d961d0f
format by running `pre-commit`
vwxyzjn May 18, 2022
4cff11d
removes trailing space
vwxyzjn May 18, 2022
fb9c832
Add an extra note
vwxyzjn May 19, 2022
31bb5c4
argument names and documentation changes
dipamc May 23, 2022
ed66604
add capture video
dipamc May 23, 2022
1610191
add experiment report
dipamc May 25, 2022
51c6aac
Merge branch 'master' into ppg-dev
vwxyzjn May 27, 2022
a4342f8
Update documentation
vwxyzjn May 27, 2022
3d4711c
Quick css fix
vwxyzjn May 27, 2022
b780521
Update documentation
vwxyzjn May 27, 2022
9c4edf8
Fix documentation for PPO
vwxyzjn May 27, 2022
23cd48e
Add benchmark commands
vwxyzjn May 27, 2022
8e4f977
Add benchmark commands
vwxyzjn May 27, 2022
72e8cce
add metrics section
dipamc May 27, 2022
aa695c1
Add more docs
vwxyzjn May 27, 2022
0564584
Quick fix on ddpg docs
vwxyzjn May 27, 2022
a08039e
Add procgen test cases
vwxyzjn May 27, 2022
31a175c
Update CI
vwxyzjn May 27, 2022
f063a7b
test CI
vwxyzjn May 27, 2022
60df2c8
test ci
vwxyzjn May 27, 2022
e70c71a
Update tests
vwxyzjn May 27, 2022
6ebaaae
normalization axis documentation
dipamc May 28, 2022
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
4 changes: 3 additions & 1 deletion .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
name: pre-commit

on:
push:
branches: [ master ]
pull_request:
branches: [ '*' ]
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
Expand Down
31 changes: 31 additions & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ on:
- '**/README.md'
- 'docs/**/*'
- 'cloud/**/*'
pull_request:
paths-ignore:
- '**/README.md'
- 'docs/**/*'
- 'cloud/**/*'
jobs:
test-core-envs:
strategy:
Expand Down Expand Up @@ -88,6 +93,32 @@ jobs:
- name: Run pybullet tests
run: poetry run pytest tests/test_pybullet.py

test-procgen-envs:
strategy:
fail-fast: false
matrix:
python-version: [3.8]
poetry-version: [1.1.11]
os: [ubuntu-18.04, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Run image
uses: abatilo/actions-poetry@v2.0.0
with:
poetry-version: ${{ matrix.poetry-version }}

# procgen tests
- name: Install core dependencies
run: poetry install -E "pytest procgen"
- name: Downgrade setuptools
run: poetry run pip install setuptools==59.5.0
- name: Run pybullet tests
run: poetry run pytest tests/test_procgen.py


test-mujoco-envs:
strategy:
Expand Down
8 changes: 8 additions & 0 deletions benchmark/ppg.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# export WANDB_ENTITY=openrlbenchmark

poetry install -E procgen
xvfb-run -a python -m cleanrl_utils.benchmark \
--env-ids starpilot bossfight bigfish \
--command "poetry run python cleanrl/ppg_procgen.py --track --capture-video" \
--num-seeds 3 \
--workers 1
3 changes: 0 additions & 3 deletions cleanrl/ddpg_continuous_action.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
# docs and experiment results can be found at https://docs.cleanrl.dev/rl-algorithms/ddpg/#ddpg_continuous_actionpy
# docs and experiment results can be found at
# https://docs.cleanrl.dev/rl-algorithms/ddpg/#ddpg_continuous_actionpy

import argparse
import os
import random
Expand Down
Loading