overview.rst 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. Ray Tutorials and Examples
  2. ==========================
  3. Get started with Ray, Tune, and RLlib with these notebooks that you can run online in Colab or Binder: `Ray Tutorial Notebooks <https://github.com/ray-project/tutorial>`__
  4. Ray Examples
  5. ------------
  6. .. raw:: html
  7. <div class="sphx-glr-bigcontainer">
  8. .. toctree::
  9. :hidden:
  10. tips-for-first-time.rst
  11. testing-tips.rst
  12. progress_bar.rst
  13. plot_streaming.rst
  14. placement-group.rst
  15. .. customgalleryitem::
  16. :tooltip: Tips for first time users.
  17. :figure: /images/pipeline.png
  18. :description: :doc:`/auto_examples/tips-for-first-time`
  19. .. customgalleryitem::
  20. :tooltip: Tips for testing Ray applications
  21. :description: :doc:`/auto_examples/testing-tips`
  22. .. customgalleryitem::
  23. :tooltip: Progress Bar for Ray Tasks
  24. :description: :doc:`/auto_examples/progress_bar`
  25. .. customgalleryitem::
  26. :tooltip: Implement a simple streaming application using Ray’s actors.
  27. :description: :doc:`/auto_examples/plot_streaming`
  28. .. customgalleryitem::
  29. :tooltip: Learn placement group use cases with examples.
  30. :description: :doc:`/auto_examples/placement-group`
  31. .. raw:: html
  32. </div>
  33. Machine Learning Examples
  34. -------------------------
  35. .. raw:: html
  36. <div class="sphx-glr-bigcontainer">
  37. .. toctree::
  38. :hidden:
  39. plot_parameter_server.rst
  40. plot_hyperparameter.rst
  41. plot_lbfgs.rst
  42. plot_example-lm.rst
  43. plot_newsreader.rst
  44. .. customgalleryitem::
  45. :tooltip: Build a simple parameter server using Ray.
  46. :figure: /images/param_actor.png
  47. :description: :doc:`/auto_examples/plot_parameter_server`
  48. .. customgalleryitem::
  49. :tooltip: Simple parallel asynchronous hyperparameter evaluation.
  50. :figure: /images/hyperparameter.png
  51. :description: :doc:`/auto_examples/plot_hyperparameter`
  52. .. customgalleryitem::
  53. :tooltip: Walkthrough of parallelizing the L-BFGS algorithm.
  54. :description: :doc:`/auto_examples/plot_lbfgs`
  55. .. customgalleryitem::
  56. :tooltip: Distributed Fault-Tolerant BERT training for FAIRSeq using Ray.
  57. :description: :doc:`/auto_examples/plot_example-lm`
  58. .. customgalleryitem::
  59. :tooltip: Implementing a simple news reader using Ray.
  60. :description: :doc:`/auto_examples/plot_newsreader`
  61. .. raw:: html
  62. </div>
  63. Reinforcement Learning Examples
  64. -------------------------------
  65. These are simple examples that show you how to leverage Ray Core. For Ray's production-grade reinforcement learning library, see `RLlib <http://docs.ray.io/en/master/rllib.html>`__.
  66. .. raw:: html
  67. <div class="sphx-glr-bigcontainer">
  68. .. toctree::
  69. :hidden:
  70. plot_pong_example.rst
  71. plot_example-a3c.rst
  72. .. customgalleryitem::
  73. :tooltip: Asynchronous Advantage Actor Critic agent using Ray.
  74. :figure: /images/a3c.png
  75. :description: :doc:`/auto_examples/plot_example-a3c`
  76. .. customgalleryitem::
  77. :tooltip: Parallelizing a policy gradient calculation on OpenAI Gym Pong.
  78. :figure: /images/pong.png
  79. :description: :doc:`/auto_examples/plot_pong_example`
  80. .. raw:: html
  81. </div>