From c9b3f8d43c428751cd543ea9f4fa8299e51642ed Mon Sep 17 00:00:00 2001 From: Dien Hoa TRUONG Date: Sun, 29 Nov 2020 15:58:15 +0100 Subject: [PATCH] Update 14_resnet.ipynb (#300) --- 14_resnet.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/14_resnet.ipynb b/14_resnet.ipynb index c5c83dd..a94cc35 100644 --- a/14_resnet.ipynb +++ b/14_resnet.ipynb @@ -492,7 +492,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "Note that we're using the `noop` function here, which simply returns its input unchanged (*noop* is a computer science term that stands for \"no operation\"). In this case, `idconv` does nothing at all if `nf==nf`, and `pool` does nothing if `stride==1`, which is what we wanted in our skip connection.\n", + "Note that we're using the `noop` function here, which simply returns its input unchanged (*noop* is a computer science term that stands for \"no operation\"). In this case, `idconv` does nothing at all if `ni==nf`, and `pool` does nothing if `stride==1`, which is what we wanted in our skip connection.\n", "\n", "Also, you'll see that we've removed the ReLU (`act_cls=None`) from the final convolution in `convs` and from `idconv`, and moved it to *after* we add the skip connection. The thinking behind this is that the whole ResNet block is like a layer, and you want your activation to be after your layer.\n", "\n",