From f42ab541127b82e832601a50225cf2a95816e258 Mon Sep 17 00:00:00 2001 From: Amog Kamsetty Date: Thu, 24 Sep 2020 00:28:01 -0700 Subject: [PATCH] [Docs] [Tune] Fix Tune Quick Start docs (#10996) --- doc/source/tune/index.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/source/tune/index.rst b/doc/source/tune/index.rst index 45a0fa5f7..f00142f57 100644 --- a/doc/source/tune/index.rst +++ b/doc/source/tune/index.rst @@ -25,9 +25,9 @@ Tune is a Python library for experiment execution and hyperparameter tuning at a Quick Start ----------- -To run this example, install the following: ``pip install 'ray[tune]' torch torchvision``. +To run this example, install the following: ``pip install 'ray[tune]'``. -This example runs a small grid search to train a convolutional neural network using PyTorch and Tune. +This example runs a parallel grid search to optimize an example objective function. .. literalinclude:: ../../../python/ray/tune/tests/example.py :language: python