一个针对强化学习和深度学习所设计的大规模分布式计算框架。

Devin Petersohn 618147f57f Revert "Updating zero capacity resource semantics (#4555)" 5 年之前
.github e5bcae52f5 Add lint advisory to PR template 5 年之前
bazel 1bcb0b94cc Synchronize arrow version and put changes upstream (#4385) 5 年之前
ci 3e234fe937 [rllib] Fix tune.run(Agent class) (#4630) 5 年之前
dev 295099b863 Fix release docs (#4225) 5 年之前
doc 6e7680bf21 [rllib] Clean up concepts documentation and policy optimizer creation (#4592) 5 年之前
docker b0f6ddf6d1 Remove CMake files (#4493) 5 年之前
examples e88e706fcc Enforce quoting style in Travis. (#4589) 5 年之前
java 618147f57f Revert "Updating zero capacity resource semantics (#4555)" 5 年之前
kubernetes 7f23e8431b fixed typo in kuber yaml (#4582) 5 年之前
python 618147f57f Revert "Updating zero capacity resource semantics (#4555)" 5 年之前
site d34516f1f8 Update Gemfile Jekyll version (#3140) 6 年之前
src 618147f57f Revert "Updating zero capacity resource semantics (#4555)" 5 年之前
thirdparty 95254b3d71 Remove the old web UI (#4301) 5 年之前
tools 7d776f35e1 Integrate metrics (#4246) 5 年之前
.bazelrc 7a38f9be1c Avoid redundant bazel build (#4458) 5 年之前
.clang-format 658c14282c Remove legacy Ray code. (#3121) 6 年之前
.gitignore c5bcec54f3 Add ignore items for java build (#4579) 5 年之前
.style.yapf 9a8f29e571 YAPF, take 3 (#2098) 6 年之前
.travis.yml 8f37d49b8b Upload S3 wheels from all branches. 5 年之前
BUILD.bazel 7d776f35e1 Integrate metrics (#4246) 5 年之前
CONTRIBUTING.rst 01e18b47f4 Direct people to stackoverflow for questions about usage. (#3830) 5 年之前
LICENSE 6201a6d1c7 [rllib] add augmented random search (#2714) 6 年之前
README.rst c6f12e5219 Update documentation from 0.7.0.dev1 to 0.7.0.dev2. (#4485) 5 年之前
WORKSPACE 7d776f35e1 Integrate metrics (#4246) 5 年之前
build-docker.sh a72084c568 adding -x flag for better debugging during builds (#1079) 7 年之前
build.sh b0f6ddf6d1 Remove CMake files (#4493) 5 年之前
pylintrc 191909dd93 adding pylint (#233) 8 年之前
scripts f1239a7a63 Lint script link broken, also lint filter was broken for generated py files (#4133) 5 年之前
setup_thirdparty.sh fbf214e408 update ray cmake build process (#2853) 6 年之前

README.rst

.. image:: https://github.com/ray-project/ray/raw/master/doc/source/images/ray_header_logo.png

.. image:: https://travis-ci.com/ray-project/ray.svg?branch=master
:target: https://travis-ci.com/ray-project/ray

.. image:: https://readthedocs.org/projects/ray/badge/?version=latest
:target: http://ray.readthedocs.io/en/latest/?badge=latest

.. image:: https://img.shields.io/badge/pypi-0.6.5-blue.svg
:target: https://pypi.org/project/ray/

|

**Ray is a flexible, high-performance distributed execution framework.**


Ray is easy to install: ``pip install ray``

Example Use
-----------

+------------------------------------------------+----------------------------------------------------+
| **Basic Python** | **Distributed with Ray** |
+------------------------------------------------+----------------------------------------------------+
|.. code-block:: python |.. code-block:: python |
| | |
| # Execute f serially. | # Execute f in parallel. |
| | |
| | @ray.remote |
| def f(): | def f(): |
| time.sleep(1) | time.sleep(1) |
| return 1 | return 1 |
| | |
| | |
| | ray.init() |
| results = [f() for i in range(4)] | results = ray.get([f.remote() for i in range(4)]) |
+------------------------------------------------+----------------------------------------------------+


Ray comes with libraries that accelerate deep learning and reinforcement learning development:

- `Tune`_: Hyperparameter Optimization Framework
- `RLlib`_: Scalable Reinforcement Learning
- `Distributed Training `__

.. _`Tune`: http://ray.readthedocs.io/en/latest/tune.html
.. _`RLlib`: http://ray.readthedocs.io/en/latest/rllib.html

Installation
------------

Ray can be installed on Linux and Mac with ``pip install ray``.

To build Ray from source or to install the nightly versions, see the `installation documentation`_.

.. _`installation documentation`: http://ray.readthedocs.io/en/latest/installation.html

More Information
----------------

- `Documentation`_
- `Tutorial`_
- `Blog`_
- `Ray paper`_
- `Ray HotOS paper`_

.. _`Documentation`: http://ray.readthedocs.io/en/latest/index.html
.. _`Tutorial`: https://github.com/ray-project/tutorial
.. _`Blog`: https://ray-project.github.io/
.. _`Ray paper`: https://arxiv.org/abs/1712.05889
.. _`Ray HotOS paper`: https://arxiv.org/abs/1703.03924

Getting Involved
----------------

- `ray-dev@googlegroups.com`_: For discussions about development or any general
questions.
- `StackOverflow`_: For questions about how to use Ray.
- `GitHub Issues`_: For reporting bugs and feature requests.
- `Pull Requests`_: For submitting code contributions.

.. _`ray-dev@googlegroups.com`: https://groups.google.com/forum/#!forum/ray-dev
.. _`GitHub Issues`: https://github.com/ray-project/ray/issues
.. _`StackOverflow`: https://stackoverflow.com/questions/tagged/ray
.. _`Pull Requests`: https://github.com/ray-project/ray/pulls