torch_tune_serve_app_config.yaml 439 B

12345678910111213141516171819
  1. base_image: {{ env["RAY_IMAGE_ML_NIGHTLY_GPU"] }}
  2. env_vars: { }
  3. debian_packages:
  4. - curl
  5. python:
  6. pip_packages:
  7. - pytest
  8. - torch
  9. - torchvision
  10. - fastapi
  11. - uvicorn
  12. - tblib
  13. - filelock>=3.3.0
  14. conda_packages: [ ]
  15. post_build_cmds:
  16. - pip uninstall -y ray || true && pip3 install -U {{ env["RAY_WHEELS"] | default("ray") }}
  17. - {{ env["RAY_WHEELS_SANITY_CHECK"] | default("echo No Ray wheels sanity check") }}