Fix unintended changes

A prior commit had removed parts of the code for drawing a handful of training samples.
This commit is contained in:
Felix Winterhalter
2025-11-29 21:31:30 +01:00
committed by GitHub
parent cc9c695ff7
commit 207ff5e636

View File

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