torch_tune_serve_app_config.yaml 486 B

1234567891011121314151617181920
  1. base_image: {{ env["RAY_IMAGE_ML_NIGHTLY_GPU"] | default("anyscale/ray-ml:nightly-py37-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
  17. - pip3 install -U {{ env["RAY_WHEELS"] | default("ray") }}
  18. - {{ env["RAY_WHEELS_SANITY_CHECK"] | default("echo No Ray wheels sanity check") }}