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

[RLlib-contrib] ARS #36607

Merged
merged 6 commits into from
Oct 5, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
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
Merge branch 'master' into rllib_contrib_ars
Signed-off-by: Sven Mika <svenmika1977@gmail.com>
  • Loading branch information
sven1977 authored Oct 5, 2023
commit 5b82c64436a5fc8311969bdc0043d7a89979eebe
24 changes: 24 additions & 0 deletions .buildkite/pipeline.ml.yml
Original file line number Diff line number Diff line change
Expand Up @@ -532,6 +532,30 @@
- pytest rllib_contrib/ars/tests/
- python rllib_contrib/ars/examples/ars_cartpole_v1.py --run-as-test

- label: ":exploding_death_star: RLlib Contrib: Bandit Tests"
conditions: ["NO_WHEELS_REQUIRED", "RAY_CI_RLLIB_CONTRIB_AFFECTED"]
commands:
- cleanup() { if [ "${BUILDKITE_PULL_REQUEST}" = "false" ]; then ./ci/build/upload_build_info.sh; fi }; trap cleanup EXIT
- conda deactivate
- conda create -n rllib_contrib python=3.8 -y
- conda activate rllib_contrib
- (cd rllib_contrib/bandit && pip install -r requirements.txt && pip install -e ".[development]")
- ./ci/env/env_info.sh
- pytest rllib_contrib/bandit/tests/
- python rllib_contrib/bandit/examples/bandit_linucb_interest_evolution_recsim.py --run-as-test

- label: ":exploding_death_star: RLlib Contrib: CRR Tests"
conditions: ["NO_WHEELS_REQUIRED", "RAY_CI_RLLIB_CONTRIB_AFFECTED"]
commands:
- cleanup() { if [ "${BUILDKITE_PULL_REQUEST}" = "false" ]; then ./ci/build/upload_build_info.sh; fi }; trap cleanup EXIT
- conda deactivate
- conda create -n rllib_contrib python=3.8 -y
- conda activate rllib_contrib
- (cd rllib_contrib/crr && pip install -r requirements.txt && pip install -e ".[development]")
- ./ci/env/env_info.sh
- pytest rllib_contrib/crr/tests/
- python rllib_contrib/crr/examples/crr_cartpole_v1.py --run-as-test

- label: ":exploding_death_star: RLlib Contrib: DDPG Tests"
conditions: ["NO_WHEELS_REQUIRED", "RAY_CI_RLLIB_CONTRIB_AFFECTED"]
commands:
Expand Down
3 changes: 3 additions & 0 deletions rllib_contrib/TOC.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
* [APEX-DDPG][./apex_ddpg]
* [APEX DQN](./apex_dqn/)
* [ARS](./ars)
* [Bandit](./bandit)
* [CRR](./crr)
* [Decision Transformer](./dt)
* [DDPG](./ddpg)
* [ES](./es)
* [LeelaChessZero](./leela_chess_zero)
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.