mirror of
https://github.com/wassname/ray.git
synced 2026-07-07 09:20:23 +08:00
62d0698097
This PR introduces the following changes: * Ray Tune -> Tune * [breaking] Creation of `schedulers/`, moving PBT, HyperBand into a submodule * [breaking] Search Algorithms now must take in experiment configurations via `add_configurations` rather through initialization * Support `"run": (function | class | str)` with automatic registering of trainable * Documentation Changes
23 lines
819 B
ReStructuredText
23 lines
819 B
ReStructuredText
Tune: Scalable Hyperparameter Search
|
|
====================================
|
|
|
|
Tune is a scalable framework for hyperparameter search with a focus on deep learning and deep reinforcement learning.
|
|
|
|
User documentation can be `found here <http://ray.readthedocs.io/en/latest/tune.html>`__.
|
|
|
|
|
|
Citing Tune
|
|
-----------
|
|
|
|
If Tune helps you in your academic research, you are encouraged to cite `our paper <https://arxiv.org/abs/1807.05118>`__. Here is an example bibtex:
|
|
|
|
.. code-block:: tex
|
|
|
|
@article{liaw2018tune,
|
|
title={Tune: A Research Platform for Distributed Model Selection and Training},
|
|
author={Liaw, Richard and Liang, Eric and Nishihara, Robert and
|
|
Moritz, Philipp and Gonzalez, Joseph E and Stoica, Ion},
|
|
journal={arXiv preprint arXiv:1807.05118},
|
|
year={2018}
|
|
}
|