From 6ae6bcfe16c636f5b814efbce0cb3e2c13a840a7 Mon Sep 17 00:00:00 2001 From: "Antonios P. Sarikas" <110358278+adosar@users.noreply.github.com> Date: Thu, 30 Jan 2025 21:38:40 +0200 Subject: [PATCH] docs: fix typo in `converting.rst` --- docs/source-pytorch/starter/converting.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source-pytorch/starter/converting.rst b/docs/source-pytorch/starter/converting.rst index 1b8991f66a214..e7df3850af241 100644 --- a/docs/source-pytorch/starter/converting.rst +++ b/docs/source-pytorch/starter/converting.rst @@ -192,6 +192,6 @@ The predict loop will not be used until you call :meth:`~lightning.pytorch.train model = LitModel() trainer.predict(model) -.. note:: ``model.eval()`` and ``torch.no_grad()`` are called automatically for testing. +.. note:: ``model.eval()`` and ``torch.no_grad()`` are called automatically for predicting. .. tip:: ``trainer.predict()`` loads the best checkpoint automatically by default if checkpointing is enabled.