From 573a84822985e4ca158a7f713958789b2ae1de23 Mon Sep 17 00:00:00 2001 From: vinzentbeer <83771540+vinzentbeer@users.noreply.github.com> Date: Wed, 30 Oct 2024 12:20:28 +0100 Subject: [PATCH] fix small typo (#7399) "We use with Tensor.train() set the internal flag" -> "We use with Tensor.train() *to* set the internal flag" --- docs/quickstart.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/quickstart.md b/docs/quickstart.md index a1fa9e7749..44ff99a350 100644 --- a/docs/quickstart.md +++ b/docs/quickstart.md @@ -165,7 +165,7 @@ from extra.datasets import fetch_mnist Now we have everything we need to start training our neural network. We will be training for 1000 steps with a batch size of 64. -We use `with Tensor.train()` set the internal flag `Tensor.training` to `True` during training. +We use `with Tensor.train()` to set the internal flag `Tensor.training` to `True` during training. Upon exit, the flag is restored to its previous value by the context manager. ```python