From 207ff5e63624c1011374b6cf2c0f585468fc8877 Mon Sep 17 00:00:00 2001 From: Felix Winterhalter <24660355+fxwin@users.noreply.github.com> Date: Sat, 29 Nov 2025 21:31:30 +0100 Subject: [PATCH] Fix unintended changes A prior commit had removed parts of the code for drawing a handful of training samples. --- Notebooks/Chap10/10_5_Convolution_For_MNIST.ipynb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Notebooks/Chap10/10_5_Convolution_For_MNIST.ipynb b/Notebooks/Chap10/10_5_Convolution_For_MNIST.ipynb index efcb6eb..64f46cf 100644 --- a/Notebooks/Chap10/10_5_Convolution_For_MNIST.ipynb +++ b/Notebooks/Chap10/10_5_Convolution_For_MNIST.ipynb @@ -105,7 +105,8 @@ " plt.subplot(2,3,i+1)\n", " plt.tight_layout()\n", " plt.imshow(example_data[i][0], cmap='gray', interpolation='none')\n", - " plt.title(\"Ground Truth: {}\".format(example_targe plt.xticks([])\n", + " plt.title(\"Ground Truth: {}\".format(example_targets[i]))\n", + " plt.xticks([])\n", " plt.yticks([])\n", "plt.show()" ]