Skip to content

Commit 0aa064a

Browse files
authored
Merge pull request #54 from vvm-broadsoft/patch-1
Minor fix in Part 1 - Tensors in PyTorch (Exercises).ipynb
2 parents 883eb15 + f459199 commit 0aa064a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

intro-to-pytorch/Part 1 - Tensors in PyTorch (Exercises).ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@
9393
"### Generate some data\n",
9494
"torch.manual_seed(7) # Set the random seed so things are predictable\n",
9595
"\n",
96-
"# Features are 3 random normal variables\n",
96+
"# Features are 5 random normal variables\n",
9797
"features = torch.randn((1, 5))\n",
9898
"# True weights for our data, random normal variables again\n",
9999
"weights = torch.randn_like(features)\n",

0 commit comments

Comments
 (0)