30b_deepspeed_env.yaml 527 B

123456789101112131415161718
  1. base_image: {{ env["RAY_IMAGE_ML_NIGHTLY_GPU"] }}
  2. env_vars: {}
  3. debian_packages:
  4. - curl
  5. python:
  6. pip_packages:
  7. # Install boto3 to workaround a temporary issue with python and urllib3.
  8. # TODO(jungong) : remove this.
  9. - boto3
  10. - myst-parser==0.15.2
  11. - myst-nb==0.13.1
  12. - jupytext==1.13.6
  13. conda_packages: []
  14. post_build_cmds:
  15. - pip uninstall -y ray || true && pip3 install -U {{ env["RAY_WHEELS"] | default("ray") }}
  16. - {{ env["RAY_WHEELS_SANITY_CHECK"] | default("echo No Ray wheels sanity check") }}