From f459199f56f96b53623f27900c789b0b55219231 Mon Sep 17 00:00:00 2001 From: Vova Manannikov Date: Tue, 20 Nov 2018 00:47:45 +0300 Subject: [PATCH] Update Part 1 - Tensors in PyTorch (Exercises).ipynb Fix typo in code comment --- intro-to-pytorch/Part 1 - Tensors in PyTorch (Exercises).ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/intro-to-pytorch/Part 1 - Tensors in PyTorch (Exercises).ipynb b/intro-to-pytorch/Part 1 - Tensors in PyTorch (Exercises).ipynb index 1223d1af83..dcd81212f5 100644 --- a/intro-to-pytorch/Part 1 - Tensors in PyTorch (Exercises).ipynb +++ b/intro-to-pytorch/Part 1 - Tensors in PyTorch (Exercises).ipynb @@ -93,7 +93,7 @@ "### Generate some data\n", "torch.manual_seed(7) # Set the random seed so things are predictable\n", "\n", - "# Features are 3 random normal variables\n", + "# Features are 5 random normal variables\n", "features = torch.randn((1, 5))\n", "# True weights for our data, random normal variables again\n", "weights = torch.randn_like(features)\n",