mirror of
https://github.com/vale981/ray
synced 2025-03-06 10:31:39 -05:00
78 lines
2.8 KiB
ReStructuredText
78 lines
2.8 KiB
ReStructuredText
![]() |
Ray Projects (Experimental)
|
||
|
===========================
|
||
|
|
||
|
Ray projects make it easy to package a Ray application so it can be
|
||
|
rerun later in the same environment. They allow for the sharing and
|
||
|
reliable reuse of existing code.
|
||
|
|
||
|
Quick start (CLI)
|
||
|
-----------------
|
||
|
|
||
|
.. code-block:: bash
|
||
|
|
||
|
# Creates a project in the current directory. It will create a
|
||
|
# project.yaml defining the code and environment and a cluster.yaml
|
||
|
# describing the cluster configuration. Both will be created in the
|
||
|
# .rayproject subdirectory of the current directory.
|
||
|
$ ray project create <project-name>
|
||
|
|
||
|
# Create a new session from the given project.
|
||
|
# Launch a cluster and run the appropriate command.
|
||
|
$ ray session start
|
||
|
|
||
|
# Open a console for the given session.
|
||
|
$ ray session attach
|
||
|
|
||
|
# Stop the given session and all of its worker nodes. The nodes/clusters
|
||
|
# are not actually terminated.
|
||
|
$ ray session stop
|
||
|
|
||
|
Examples
|
||
|
--------
|
||
|
- `Open Tacotron <https://github.com/ray-project/ray/blob/master/python/ray/projects/examples/open-tacotron/.rayproject/project.yaml>`__:
|
||
|
A TensorFlow implementation of Google's Tacotron speech synthesis with pre-trained model (unofficial)
|
||
|
- `PyTorch Transformers <https://github.com/ray-project/ray/blob/master/python/ray/projects/examples/pytorch-transformers/.rayproject/project.yaml>`__:
|
||
|
A library of state-of-the-art pretrained models for Natural Language Processing (NLP)
|
||
|
|
||
|
Project file format (project.yaml)
|
||
|
----------------------------------
|
||
|
|
||
|
A project file contains everything required to run a project.
|
||
|
This includes a cluster configuration, the environment and dependencies
|
||
|
for the application, and the specific inputs used to run the project.
|
||
|
|
||
|
Here is an example for a minimal project format:
|
||
|
|
||
|
.. code-block:: yaml
|
||
|
|
||
|
name: test-project
|
||
|
description: "This is a simple test project"
|
||
|
repo: https://github.com/ray-project/ray
|
||
|
|
||
|
# Cluster to be instantiated by default when starting the project.
|
||
|
cluster: .rayproject/cluster.yaml
|
||
|
|
||
|
# Commands/information to build the environment, once the cluster is
|
||
|
# instantiated. This can include the versions of python libraries etc.
|
||
|
# It can be specified as a Python requirements.txt, a conda environment,
|
||
|
# a Dockerfile, or a shell script to run to set up the libraries.
|
||
|
environment:
|
||
|
requirements: requirements.txt
|
||
|
|
||
|
# List of commands that can be executed once the cluster is instantiated
|
||
|
# and the environment is set up.
|
||
|
# A command can also specify a cluster that overwrites the default cluster.
|
||
|
commands:
|
||
|
- name: test
|
||
|
command: python test.py
|
||
|
|
||
|
Project files have to adhere to the following schema:
|
||
|
|
||
|
.. jsonschema:: ../../python/ray/projects/schema.json
|
||
|
|
||
|
Cluster file format (cluster.yaml)
|
||
|
----------------------------------
|
||
|
|
||
|
This is the same as for the autoscaler, see
|
||
|
`Cluster Launch page <autoscaling.html>`_.
|