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.