2021-11-10 18:00:16 -08:00
|
|
|
base_image: "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
|
2021-11-10 18:00:16 -08:00
|
|
|
pip_packages: []
|
2021-06-01 17:39:18 +02:00
|
|
|
conda_packages: []
|
|
|
|
|
|
|
|
post_build_cmds:
|
2021-09-08 15:29:40 -07:00
|
|
|
- pip uninstall -y ray || true
|
2021-06-01 17:39:18 +02:00
|
|
|
- pip3 install -U {{ env["RAY_WHEELS"] | default("ray") }}
|
2021-09-10 17:50:31 +01: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 ~/.
|