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()" ]