From 074592b3e6e955968453c343e621ca6aa17ad575 Mon Sep 17 00:00:00 2001 From: booletic Date: Sat, 12 Dec 2020 01:35:24 +0400 Subject: [PATCH] Fix typo (#351) Co-authored-by: Enigma --- 04_mnist_basics.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/04_mnist_basics.ipynb b/04_mnist_basics.ipynb index 290a8f8..8a1edc2 100644 --- a/04_mnist_basics.ipynb +++ b/04_mnist_basics.ipynb @@ -3607,7 +3607,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "We already have our dependent variables `x`—these are the images themselves. We'll concatenate them all into a single tensor, and also change them from a list of matrices (a rank-3 tensor) to a list of vectors (a rank-2 tensor). We can do this using `view`, which is a PyTorch method that changes the shape of a tensor without changing its contents. `-1` is a special parameter to `view` that means \"make this axis as big as necessary to fit all the data\":" + "We already have our independent variables `x`—these are the images themselves. We'll concatenate them all into a single tensor, and also change them from a list of matrices (a rank-3 tensor) to a list of vectors (a rank-2 tensor). We can do this using `view`, which is a PyTorch method that changes the shape of a tensor without changing its contents. `-1` is a special parameter to `view` that means \"make this axis as big as necessary to fit all the data\":" ] }, {