2022-05-17 17:03:12 +01:00
|
|
|
base_image: {{ env["RAY_IMAGE_ML_NIGHTLY_GPU"] | default("anyscale/ray-ml:nightly-py37-gpu") }}
|
2021-06-01 17:39:18 +02:00
|
|
|
env_vars: {}
|
2021-09-07 11:48:41 +02:00
|
|
|
debian_packages:
|
|
|
|
- unzip
|
|
|
|
- zip
|
2021-06-01 17:39:18 +02:00
|
|
|
|
|
|
|
python:
|
2021-09-06 17:48:05 +02:00
|
|
|
# These dependencies should be handled by requirements_rllib.txt and
|
|
|
|
# requirements_ml_docker.txt
|
2022-03-22 02:44:22 -07:00
|
|
|
pip_packages:
|
2022-05-23 08:18:44 +02:00
|
|
|
- gym
|
2021-06-01 17:39:18 +02:00
|
|
|
conda_packages: []
|
|
|
|
|
|
|
|
post_build_cmds:
|
2022-05-22 16:07:03 +09:00
|
|
|
- pip3 uninstall -y ray || true && pip3 install -U {{ env["RAY_WHEELS"] | default("ray") }}
|
2021-11-17 10:27:00 -08:00
|
|
|
# TODO(jungong): remove once nightly image gets upgraded.
|
|
|
|
- pip install -U pybullet==3.2.0
|
2022-05-31 13:46:17 +02:00
|
|
|
- {{ env["RAY_WHEELS_SANITY_CHECK"] | default("echo No Ray wheels sanity check") }}
|
2021-09-07 11:48:41 +02:00
|
|
|
# Clone the rl-experiments repo for offline-RL files.
|
|
|
|
- git clone https://github.com/ray-project/rl-experiments.git
|
|
|
|
- cp rl-experiments/halfcheetah-sac/2021-09-06/halfcheetah_expert_sac.zip ~/.
|