Skip to content

Commit 5e859cf

Browse files
authored
Update 02_pytorch_classification.ipynb
Fix ReLU Wikipedia link
1 parent 42f6486 commit 5e859cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

02_pytorch_classification.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2324,7 +2324,7 @@
23242324
"\n",
23252325
"PyTorch has a bunch of [ready-made non-linear activation functions](https://pytorch.org/docs/stable/nn.html#non-linear-activations-weighted-sum-nonlinearity) that do similiar but different things. \n",
23262326
"\n",
2327-
"One of the most common and best performing is [ReLU](https://en.wikipedia.org/wiki/Rectifier_(neural_networks) (rectified linear-unit, [`torch.nn.ReLU()`](https://pytorch.org/docs/stable/generated/torch.nn.ReLU.html)).\n",
2327+
"One of the most common and best performing is [ReLU](https://en.wikipedia.org/wiki/Rectifier_(neural_networks)) (rectified linear-unit, [`torch.nn.ReLU()`](https://pytorch.org/docs/stable/generated/torch.nn.ReLU.html)).\n",
23282328
"\n",
23292329
"Rather than talk about it, let's put it in our neural network between the hidden layers in the forward pass and see what happens."
23302330
]

0 commit comments

Comments
 (0)