app_config.yaml 805 B

12345678910111213141516171819202122
  1. base_image: {{ env["RAY_IMAGE_ML_NIGHTLY_GPU"] | default("anyscale/ray-ml:nightly-py37-gpu") }}
  2. env_vars: {}
  3. debian_packages:
  4. - unzip
  5. - zip
  6. python:
  7. # These dependencies should be handled by requirements_rllib.txt and
  8. # requirements_ml_docker.txt
  9. pip_packages:
  10. - gym==0.21.0
  11. conda_packages: []
  12. post_build_cmds:
  13. - pip uninstall -y ray || true
  14. - pip3 install -U {{ env["RAY_WHEELS"] | default("ray") }}
  15. - {{ env["RAY_WHEELS_SANITY_CHECK"] | default("echo No Ray wheels sanity check") }}
  16. # TODO(jungong): remove once nightly image gets upgraded.
  17. - pip install -U pybullet==3.2.0
  18. # Clone the rl-experiments repo for offline-RL files.
  19. - git clone https://github.com/ray-project/rl-experiments.git
  20. - cp rl-experiments/halfcheetah-sac/2021-09-06/halfcheetah_expert_sac.zip ~/.