Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[rllib] Initial work on integrating hyperparameter search tool #1107

Merged
merged 17 commits into from
Oct 13, 2017
Prev Previous commit
Next Next commit
todo
  • Loading branch information
ericl committed Oct 12, 2017
commit 81ad34f8f0118d8f7e37ab639c36cff3724eec00
11 changes: 8 additions & 3 deletions python/ray/tune/README.rst
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
ray.tune: fast hyperparameter search
Ray.tune: Fast hyperparameter search
====================================

Using ray.tune with RLlib
-------------------------

You can use ray.tune through RLlib's train.py script. The train.py script
supports two modes:
One way to use ray.tune is through RLlib's train.py script. The train.py script
supports two modes. For example, to run multiple concurrent trials of Pong:

- Inline args: ``./train.py --env=Pong-v0 --alg=PPO --num_trials=8 --stop '{"time_total_s": 3200}' --resources '{"cpu": 8, "gpu": 2}' --config '{"num_workers": 8, "sgd_num_iter": 10}'``

Expand Down Expand Up @@ -47,3 +47,8 @@ Using ray.tune to run custom scripts
------------------------------------

TODO

Using ray.tune as a library
---------------------------

TODO