Skip to content

Commit

Permalink
fixed lab 5 typo
Browse files Browse the repository at this point in the history
  • Loading branch information
willGuimont committed Feb 23, 2024
1 parent 7c9d30f commit e993a88
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Laboratoire 5.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -318,8 +318,8 @@
"outputs": [],
"source": [
"# TODO Corrigez le code suivant\n",
"conv1 = nn.Conv2d(3, 100, 3, padding=1)\n",
"conv2 = nn.Conv2d(100, 100, 3, padding=1)\n",
"conv1 = nn.Conv2d(3, 32, 3, padding=1)\n",
"conv2 = nn.Conv2d(64, 100, 3, padding=1)\n",
"conv2(conv1(image_batch)).shape"
]
},
Expand Down

0 comments on commit e993a88

Please sign in to comment.