decision_tree_app_config.yaml 424 B

12345678910111213
  1. base_image: {{ env["RAY_IMAGE_NIGHTLY_CPU"] | default("anyscale/ray:nightly-py37") }}
  2. debian_packages: []
  3. python:
  4. pip_packages:
  5. - scikit-learn
  6. conda_packages: []
  7. post_build_cmds:
  8. - pip3 uninstall -y ray && pip3 install -U {{ env["RAY_WHEELS"] | default("ray") }}
  9. - pip3 install -U ray[default]
  10. - echo {{env["DATESTAMP"]}}
  11. - {{ env["RAY_WHEELS_SANITY_CHECK"] | default("echo No Ray wheels sanity check") }}