RAY - 小记

RAY - 小记_第1张图片

文章目录

    • 关于 RAY
    • RAY 结构


关于 RAY

Ray is a unified framework for scaling AI and Python applications.

Ray consists of a core distributed runtime and a toolkit of libraries (Ray AIR) for accelerating ML workloads.

RAY 是一个简单、通用的分布式计算框架。

RAY 解决了分布式系统的一些通用问题:

  • 远程过程调用
  • 部署
  • 调度
  • 服务发现
  • failover
  • 运维

  • github : https://github.com/ray-project/ray
  • 官网:https://www.ray.io
  • rllib : https://docs.ray.io/en/master/rllib/rllib-env.html
  • Ray Dashboard : https://docs.ray.io/en/latest/ray-core/ray-dashboard.html

相关教程/资源

  • 彭正皓: 【学术向】超强的强化学习系统怎么实现?Ray是啥?tune和rllib又是什么?
    https://www.bilibili.com/video/BV1VE411w73P/
  • 使用Ray快速开发分布式应用
    https://www.bilibili.com/video/BV1kU4y1K7f8/
  • Ray——Python并行学习框架
    https://www.jianshu.com/p/e97290b8e16e

RAY 结构

RAY - 小记_第2张图片


伊织 2023-02-18(六)

你可能感兴趣的:(其他,RAY)