Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions docs/00_pytorch_fundamentals.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -1907,9 +1907,7 @@
"\n",
"The [`torch.nn.Linear()`](https://pytorch.org/docs/1.9.1/generated/torch.nn.Linear.html) module (we'll see this in action later on), also known as a feed-forward layer or fully connected layer, implements a matrix multiplication between an input `x` and a weights matrix `A`.\n",
"\n",
"$$\n",
"y = x\\cdot{A^T} + b\n",
"$$\n",
"$$ y = x \\cdot A^\\top + b $$\n",
"\n",
"Where:\n",
"* `x` is the input to the layer (deep learning is a stack of layers like `torch.nn.Linear()` and others on top of each other).\n",
Expand All @@ -1924,8 +1922,8 @@
"\n",
"Try changing the values of `in_features` and `out_features` below and see what happens.\n",
"\n",
"Do you notice anything to do with the shapes?"
]
"Do you notice anything to do with the shapes?\n"
]
},
{
"cell_type": "code",
Expand Down