[tune] Update trainable docs and support hparams (#5558)

This commit is contained in:
Richard Liaw
2019-09-04 12:44:42 -07:00
committed by Eric Liang
parent 3ea9062419
commit 34f6d2fc5c
12 changed files with 269 additions and 113 deletions
+4 -2
View File
@@ -1,5 +1,5 @@
Tune Example Walkthrough
========================
Tune Walkthrough
================
This tutorial will walk you through the following process to setup a Tune experiment. Specifically, we'll leverage ASHA and Bayesian Optimization (via HyperOpt) via the following steps:
@@ -60,6 +60,8 @@ We can then plot the performance of this trial.
:start-after: __plot_begin__
:end-before: __plot_end__
.. important:: Tune will automatically run parallel trials across all available cores/GPUs on your machine or cluster. To limit the number of cores that Tune uses, you can call ``ray.init(num_cpus=<int>, num_gpus=<int>)`` before ``tune.run``.
Early Stopping with ASHA
~~~~~~~~~~~~~~~~~~~~~~~~