Skip to content

Commit

Permalink
Merge pull request fastai#181 from desireevl/master
Browse files Browse the repository at this point in the history
Minor spelling fix
  • Loading branch information
jph00 authored Mar 6, 2018
2 parents 2cd6dbb + f72d6bd commit 6d0e116
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tutorials/linalg_pytorch.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -1053,7 +1053,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"It turns out that `Linear` is defined by a matrix multiplication and then an addition. Let's try defining this ourselves. This will allow us to see exactly where matrix multiplication is used (we will dive in to how matrix multiplication works in teh next section). \n",
"It turns out that `Linear` is defined by a matrix multiplication and then an addition. Let's try defining this ourselves. This will allow us to see exactly where matrix multiplication is used (we will dive in to how matrix multiplication works in the next section). \n",
"\n",
"Just as Numpy has `np.matmul` for matrix multiplication (in Python 3, this is equivalent to the `@` operator), PyTorch has `torch.matmul`. \n",
"\n",
Expand Down

0 comments on commit 6d0e116

Please sign in to comment.