From abe7395756d6d812d68d36050b34084e147740b2 Mon Sep 17 00:00:00 2001 From: Tanmay gaikwad <142136110+tanmaygaikwad723@users.noreply.github.com> Date: Mon, 28 Jul 2025 23:00:51 +0530 Subject: [PATCH] Docs: Update broken link in workflow documentation --- 01_pytorch_workflow.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01_pytorch_workflow.ipynb b/01_pytorch_workflow.ipynb index 179f6ba2..3ff1cf7f 100644 --- a/01_pytorch_workflow.ipynb +++ b/01_pytorch_workflow.ipynb @@ -613,7 +613,7 @@ "source": [ "Hmm?\n", "\n", - "You probably noticed we used [`torch.inference_mode()`](https://pytorch.org/docs/stable/generated/torch.inference_mode.html) as a [context manager](https://realpython.com/python-with-statement/) (that's what the `with torch.inference_mode():` is) to make the predictions.\n", + "You probably noticed we used [`torch.inference_mode()`](https://docs.pytorch.org/docs/stable/generated/torch.autograd.grad_mode.inference_mode.html) as a [context manager](https://realpython.com/python-with-statement/) (that's what the `with torch.inference_mode():` is) to make the predictions.\n", "\n", "As the name suggests, `torch.inference_mode()` is used when using a model for inference (making predictions).\n", "\n",