From 6b84a4686d5dec73135f9ba08169afefffd4a6ec Mon Sep 17 00:00:00 2001 From: Rudrendu Paul <38769913+RudrenduPaul@users.noreply.github.com> Date: Sat, 18 Apr 2026 22:24:41 -0700 Subject: [PATCH] docs(tune): fix import count in CIFAR PyTorch example The CIFAR PyTorch tutorial imports only 2 Ray Tune items (`from ray import tune` and `from ray.tune.schedulers import ASHAScheduler`), not 3 as stated in the narrative text. Corrects the count to match the actual code. Fixes #61250 --- doc/source/tune/examples/tune-pytorch-cifar.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/tune/examples/tune-pytorch-cifar.ipynb b/doc/source/tune/examples/tune-pytorch-cifar.ipynb index 3d7e748ec107..406b2ab66e9e 100644 --- a/doc/source/tune/examples/tune-pytorch-cifar.ipynb +++ b/doc/source/tune/examples/tune-pytorch-cifar.ipynb @@ -106,7 +106,7 @@ "id": "f59e551d", "metadata": {}, "source": [ - "Most of the imports are needed for building the PyTorch model. Only the last three\n", + "Most of the imports are needed for building the PyTorch model. Only the last two\n", "imports are for Ray Tune.\n", "\n", "## Data loaders\n",