xgboost_app_config.yaml 475 B

1234567891011121314
  1. base_image: {{ env["RAY_IMAGE_ML_NIGHTLY_GPU"] | default("anyscale/ray-ml:nightly-py37-gpu") }}
  2. debian_packages:
  3. - curl
  4. python:
  5. pip_packages:
  6. - pytest
  7. - modin==0.12.1
  8. conda_packages: []
  9. post_build_cmds:
  10. - pip3 uninstall ray -y || true && pip3 install -U {{ env["RAY_WHEELS"] | default("ray") }}
  11. - pip3 install -U --force-reinstall --no-deps xgboost_ray # Avoid caching
  12. - {{ env["RAY_WHEELS_SANITY_CHECK"] | default("echo No Ray wheels sanity check") }}