From dac6268c5b0e67c1e75dbc30a5ffcdcd494c9368 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Frank=20R=C3=B6der?= Date: Tue, 21 Jan 2020 19:21:14 +0100 Subject: [PATCH] [tune] Fix broken link in Tune User Guide (#6866) --- doc/source/tune-usage.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/tune-usage.rst b/doc/source/tune-usage.rst index d44ede6ac..03c06a398 100644 --- a/doc/source/tune-usage.rst +++ b/doc/source/tune-usage.rst @@ -119,7 +119,7 @@ Tune automatically runs N concurrent trials, where N is the number of CPUs (core # If you have 4 CPUs on your machine, this will run 1 trial at a time. tune.run(trainable, num_samples=10, resources_per_trial={"cpu": 4}) -To leverage GPUs, you can set ``gpu`` in ``resources_per_trial``. A trial will only be executed if there are resources available. See the section on`resource allocation `_, which provides more details about GPU usage and trials that are distributed: +To leverage GPUs, you can set ``gpu`` in ``resources_per_trial``. A trial will only be executed if there are resources available. See the section on `resource allocation `_, which provides more details about GPU usage and trials that are distributed: .. code-block:: python